oci.GoldenGate.Connection
Explore with Pulumi AI
This resource provides the Connection resource in Oracle Cloud Infrastructure Golden Gate service.
Creates a new Connection.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testConnection = new Oci.GoldenGate.Connection("testConnection", new()
{
CompartmentId = @var.Compartment_id,
ConnectionType = @var.Connection_connection_type,
DisplayName = @var.Connection_display_name,
TechnologyType = @var.Connection_technology_type,
AccessKeyId = oci_kms_key.Test_key.Id,
AccountKey = @var.Connection_account_key,
AccountName = @var.Connection_account_name,
AdditionalAttributes = new[]
{
new Oci.GoldenGate.Inputs.ConnectionAdditionalAttributeArgs
{
Name = @var.Connection_additional_attributes_name,
Value = @var.Connection_additional_attributes_value,
},
},
AuthenticationType = @var.Connection_authentication_type,
AzureTenantId = oci_golden_gate_azure_tenant.Test_azure_tenant.Id,
BootstrapServers = new[]
{
new Oci.GoldenGate.Inputs.ConnectionBootstrapServerArgs
{
Host = @var.Connection_bootstrap_servers_host,
Port = @var.Connection_bootstrap_servers_port,
PrivateIp = @var.Connection_bootstrap_servers_private_ip,
},
},
ClientId = oci_golden_gate_client.Test_client.Id,
ClientSecret = @var.Connection_client_secret,
ConnectionFactory = @var.Connection_connection_factory,
ConnectionString = @var.Connection_connection_string,
ConnectionUrl = @var.Connection_connection_url,
ConsumerProperties = @var.Connection_consumer_properties,
CoreSiteXml = @var.Connection_core_site_xml,
DatabaseId = oci_database_database.Test_database.Id,
DatabaseName = oci_database_database.Test_database.Name,
DbSystemId = oci_database_db_system.Test_db_system.Id,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
DeploymentId = oci_golden_gate_deployment.Test_deployment.Id,
Description = @var.Connection_description,
Endpoint = @var.Connection_endpoint,
FreeformTags =
{
{ "bar-key", "value" },
},
Host = @var.Connection_host,
JndiConnectionFactory = @var.Connection_jndi_connection_factory,
JndiInitialContextFactory = @var.Connection_jndi_initial_context_factory,
JndiProviderUrl = @var.Connection_jndi_provider_url,
JndiSecurityCredentials = @var.Connection_jndi_security_credentials,
JndiSecurityPrincipal = @var.Connection_jndi_security_principal,
KeyId = oci_kms_key.Test_key.Id,
KeyStore = @var.Connection_key_store,
KeyStorePassword = @var.Connection_key_store_password,
NsgIds = @var.Connection_nsg_ids,
Password = @var.Connection_password,
Port = @var.Connection_port,
PrivateIp = @var.Connection_private_ip,
PrivateKeyFile = @var.Connection_private_key_file,
PrivateKeyPassphrase = @var.Connection_private_key_passphrase,
ProducerProperties = @var.Connection_producer_properties,
PublicKeyFingerprint = @var.Connection_public_key_fingerprint,
Region = @var.Connection_region,
SasToken = @var.Connection_sas_token,
SecretAccessKey = @var.Connection_secret_access_key,
SecurityProtocol = @var.Connection_security_protocol,
SessionMode = @var.Connection_session_mode,
ShouldUseJndi = @var.Connection_should_use_jndi,
ShouldValidateServerCertificate = @var.Connection_should_validate_server_certificate,
SslCa = @var.Connection_ssl_ca,
SslCert = @var.Connection_ssl_cert,
SslCrl = @var.Connection_ssl_crl,
SslKey = @var.Connection_ssl_key,
SslKeyPassword = @var.Connection_ssl_key_password,
SslMode = @var.Connection_ssl_mode,
StreamPoolId = oci_streaming_stream_pool.Test_stream_pool.Id,
SubnetId = oci_core_subnet.Test_subnet.Id,
TenancyId = oci_identity_tenancy.Test_tenancy.Id,
TrustStore = @var.Connection_trust_store,
TrustStorePassword = @var.Connection_trust_store_password,
Url = @var.Connection_url,
UserId = oci_identity_user.Test_user.Id,
Username = @var.Connection_username,
VaultId = oci_kms_vault.Test_vault.Id,
Wallet = @var.Connection_wallet,
});
});
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/GoldenGate"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := GoldenGate.NewConnection(ctx, "testConnection", &GoldenGate.ConnectionArgs{
CompartmentId: pulumi.Any(_var.Compartment_id),
ConnectionType: pulumi.Any(_var.Connection_connection_type),
DisplayName: pulumi.Any(_var.Connection_display_name),
TechnologyType: pulumi.Any(_var.Connection_technology_type),
AccessKeyId: pulumi.Any(oci_kms_key.Test_key.Id),
AccountKey: pulumi.Any(_var.Connection_account_key),
AccountName: pulumi.Any(_var.Connection_account_name),
AdditionalAttributes: goldengate.ConnectionAdditionalAttributeArray{
&goldengate.ConnectionAdditionalAttributeArgs{
Name: pulumi.Any(_var.Connection_additional_attributes_name),
Value: pulumi.Any(_var.Connection_additional_attributes_value),
},
},
AuthenticationType: pulumi.Any(_var.Connection_authentication_type),
AzureTenantId: pulumi.Any(oci_golden_gate_azure_tenant.Test_azure_tenant.Id),
BootstrapServers: goldengate.ConnectionBootstrapServerArray{
&goldengate.ConnectionBootstrapServerArgs{
Host: pulumi.Any(_var.Connection_bootstrap_servers_host),
Port: pulumi.Any(_var.Connection_bootstrap_servers_port),
PrivateIp: pulumi.Any(_var.Connection_bootstrap_servers_private_ip),
},
},
ClientId: pulumi.Any(oci_golden_gate_client.Test_client.Id),
ClientSecret: pulumi.Any(_var.Connection_client_secret),
ConnectionFactory: pulumi.Any(_var.Connection_connection_factory),
ConnectionString: pulumi.Any(_var.Connection_connection_string),
ConnectionUrl: pulumi.Any(_var.Connection_connection_url),
ConsumerProperties: pulumi.Any(_var.Connection_consumer_properties),
CoreSiteXml: pulumi.Any(_var.Connection_core_site_xml),
DatabaseId: pulumi.Any(oci_database_database.Test_database.Id),
DatabaseName: pulumi.Any(oci_database_database.Test_database.Name),
DbSystemId: pulumi.Any(oci_database_db_system.Test_db_system.Id),
DefinedTags: pulumi.AnyMap{
"foo-namespace.bar-key": pulumi.Any("value"),
},
DeploymentId: pulumi.Any(oci_golden_gate_deployment.Test_deployment.Id),
Description: pulumi.Any(_var.Connection_description),
Endpoint: pulumi.Any(_var.Connection_endpoint),
FreeformTags: pulumi.AnyMap{
"bar-key": pulumi.Any("value"),
},
Host: pulumi.Any(_var.Connection_host),
JndiConnectionFactory: pulumi.Any(_var.Connection_jndi_connection_factory),
JndiInitialContextFactory: pulumi.Any(_var.Connection_jndi_initial_context_factory),
JndiProviderUrl: pulumi.Any(_var.Connection_jndi_provider_url),
JndiSecurityCredentials: pulumi.Any(_var.Connection_jndi_security_credentials),
JndiSecurityPrincipal: pulumi.Any(_var.Connection_jndi_security_principal),
KeyId: pulumi.Any(oci_kms_key.Test_key.Id),
KeyStore: pulumi.Any(_var.Connection_key_store),
KeyStorePassword: pulumi.Any(_var.Connection_key_store_password),
NsgIds: pulumi.Any(_var.Connection_nsg_ids),
Password: pulumi.Any(_var.Connection_password),
Port: pulumi.Any(_var.Connection_port),
PrivateIp: pulumi.Any(_var.Connection_private_ip),
PrivateKeyFile: pulumi.Any(_var.Connection_private_key_file),
PrivateKeyPassphrase: pulumi.Any(_var.Connection_private_key_passphrase),
ProducerProperties: pulumi.Any(_var.Connection_producer_properties),
PublicKeyFingerprint: pulumi.Any(_var.Connection_public_key_fingerprint),
Region: pulumi.Any(_var.Connection_region),
SasToken: pulumi.Any(_var.Connection_sas_token),
SecretAccessKey: pulumi.Any(_var.Connection_secret_access_key),
SecurityProtocol: pulumi.Any(_var.Connection_security_protocol),
SessionMode: pulumi.Any(_var.Connection_session_mode),
ShouldUseJndi: pulumi.Any(_var.Connection_should_use_jndi),
ShouldValidateServerCertificate: pulumi.Any(_var.Connection_should_validate_server_certificate),
SslCa: pulumi.Any(_var.Connection_ssl_ca),
SslCert: pulumi.Any(_var.Connection_ssl_cert),
SslCrl: pulumi.Any(_var.Connection_ssl_crl),
SslKey: pulumi.Any(_var.Connection_ssl_key),
SslKeyPassword: pulumi.Any(_var.Connection_ssl_key_password),
SslMode: pulumi.Any(_var.Connection_ssl_mode),
StreamPoolId: pulumi.Any(oci_streaming_stream_pool.Test_stream_pool.Id),
SubnetId: pulumi.Any(oci_core_subnet.Test_subnet.Id),
TenancyId: pulumi.Any(oci_identity_tenancy.Test_tenancy.Id),
TrustStore: pulumi.Any(_var.Connection_trust_store),
TrustStorePassword: pulumi.Any(_var.Connection_trust_store_password),
Url: pulumi.Any(_var.Connection_url),
UserId: pulumi.Any(oci_identity_user.Test_user.Id),
Username: pulumi.Any(_var.Connection_username),
VaultId: pulumi.Any(oci_kms_vault.Test_vault.Id),
Wallet: pulumi.Any(_var.Connection_wallet),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.GoldenGate.Connection;
import com.pulumi.oci.GoldenGate.ConnectionArgs;
import com.pulumi.oci.GoldenGate.inputs.ConnectionAdditionalAttributeArgs;
import com.pulumi.oci.GoldenGate.inputs.ConnectionBootstrapServerArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testConnection = new Connection("testConnection", ConnectionArgs.builder()
.compartmentId(var_.compartment_id())
.connectionType(var_.connection_connection_type())
.displayName(var_.connection_display_name())
.technologyType(var_.connection_technology_type())
.accessKeyId(oci_kms_key.test_key().id())
.accountKey(var_.connection_account_key())
.accountName(var_.connection_account_name())
.additionalAttributes(ConnectionAdditionalAttributeArgs.builder()
.name(var_.connection_additional_attributes_name())
.value(var_.connection_additional_attributes_value())
.build())
.authenticationType(var_.connection_authentication_type())
.azureTenantId(oci_golden_gate_azure_tenant.test_azure_tenant().id())
.bootstrapServers(ConnectionBootstrapServerArgs.builder()
.host(var_.connection_bootstrap_servers_host())
.port(var_.connection_bootstrap_servers_port())
.privateIp(var_.connection_bootstrap_servers_private_ip())
.build())
.clientId(oci_golden_gate_client.test_client().id())
.clientSecret(var_.connection_client_secret())
.connectionFactory(var_.connection_connection_factory())
.connectionString(var_.connection_connection_string())
.connectionUrl(var_.connection_connection_url())
.consumerProperties(var_.connection_consumer_properties())
.coreSiteXml(var_.connection_core_site_xml())
.databaseId(oci_database_database.test_database().id())
.databaseName(oci_database_database.test_database().name())
.dbSystemId(oci_database_db_system.test_db_system().id())
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.deploymentId(oci_golden_gate_deployment.test_deployment().id())
.description(var_.connection_description())
.endpoint(var_.connection_endpoint())
.freeformTags(Map.of("bar-key", "value"))
.host(var_.connection_host())
.jndiConnectionFactory(var_.connection_jndi_connection_factory())
.jndiInitialContextFactory(var_.connection_jndi_initial_context_factory())
.jndiProviderUrl(var_.connection_jndi_provider_url())
.jndiSecurityCredentials(var_.connection_jndi_security_credentials())
.jndiSecurityPrincipal(var_.connection_jndi_security_principal())
.keyId(oci_kms_key.test_key().id())
.keyStore(var_.connection_key_store())
.keyStorePassword(var_.connection_key_store_password())
.nsgIds(var_.connection_nsg_ids())
.password(var_.connection_password())
.port(var_.connection_port())
.privateIp(var_.connection_private_ip())
.privateKeyFile(var_.connection_private_key_file())
.privateKeyPassphrase(var_.connection_private_key_passphrase())
.producerProperties(var_.connection_producer_properties())
.publicKeyFingerprint(var_.connection_public_key_fingerprint())
.region(var_.connection_region())
.sasToken(var_.connection_sas_token())
.secretAccessKey(var_.connection_secret_access_key())
.securityProtocol(var_.connection_security_protocol())
.sessionMode(var_.connection_session_mode())
.shouldUseJndi(var_.connection_should_use_jndi())
.shouldValidateServerCertificate(var_.connection_should_validate_server_certificate())
.sslCa(var_.connection_ssl_ca())
.sslCert(var_.connection_ssl_cert())
.sslCrl(var_.connection_ssl_crl())
.sslKey(var_.connection_ssl_key())
.sslKeyPassword(var_.connection_ssl_key_password())
.sslMode(var_.connection_ssl_mode())
.streamPoolId(oci_streaming_stream_pool.test_stream_pool().id())
.subnetId(oci_core_subnet.test_subnet().id())
.tenancyId(oci_identity_tenancy.test_tenancy().id())
.trustStore(var_.connection_trust_store())
.trustStorePassword(var_.connection_trust_store_password())
.url(var_.connection_url())
.userId(oci_identity_user.test_user().id())
.username(var_.connection_username())
.vaultId(oci_kms_vault.test_vault().id())
.wallet(var_.connection_wallet())
.build());
}
}
import pulumi
import pulumi_oci as oci
test_connection = oci.golden_gate.Connection("testConnection",
compartment_id=var["compartment_id"],
connection_type=var["connection_connection_type"],
display_name=var["connection_display_name"],
technology_type=var["connection_technology_type"],
access_key_id=oci_kms_key["test_key"]["id"],
account_key=var["connection_account_key"],
account_name=var["connection_account_name"],
additional_attributes=[oci.golden_gate.ConnectionAdditionalAttributeArgs(
name=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
value=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
)],
authentication_type=var["connection_authentication_type"],
azure_tenant_id=oci_golden_gate_azure_tenant["test_azure_tenant"]["id"],
bootstrap_servers=[oci.golden_gate.ConnectionBootstrapServerArgs(
host=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
port=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
private_ip=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
)],
client_id=oci_golden_gate_client["test_client"]["id"],
client_secret=var["connection_client_secret"],
connection_factory=var["connection_connection_factory"],
connection_string=var["connection_connection_string"],
connection_url=var["connection_connection_url"],
consumer_properties=var["connection_consumer_properties"],
core_site_xml=var["connection_core_site_xml"],
database_id=oci_database_database["test_database"]["id"],
database_name=oci_database_database["test_database"]["name"],
db_system_id=oci_database_db_system["test_db_system"]["id"],
defined_tags={
"foo-namespace.bar-key": "value",
},
deployment_id=oci_golden_gate_deployment["test_deployment"]["id"],
description=var["connection_description"],
endpoint=var["connection_endpoint"],
freeform_tags={
"bar-key": "value",
},
host=var["connection_host"],
jndi_connection_factory=var["connection_jndi_connection_factory"],
jndi_initial_context_factory=var["connection_jndi_initial_context_factory"],
jndi_provider_url=var["connection_jndi_provider_url"],
jndi_security_credentials=var["connection_jndi_security_credentials"],
jndi_security_principal=var["connection_jndi_security_principal"],
key_id=oci_kms_key["test_key"]["id"],
key_store=var["connection_key_store"],
key_store_password=var["connection_key_store_password"],
nsg_ids=var["connection_nsg_ids"],
password=var["connection_password"],
port=var["connection_port"],
private_ip=var["connection_private_ip"],
private_key_file=var["connection_private_key_file"],
private_key_passphrase=var["connection_private_key_passphrase"],
producer_properties=var["connection_producer_properties"],
public_key_fingerprint=var["connection_public_key_fingerprint"],
region=var["connection_region"],
sas_token=var["connection_sas_token"],
secret_access_key=var["connection_secret_access_key"],
security_protocol=var["connection_security_protocol"],
session_mode=var["connection_session_mode"],
should_use_jndi=var["connection_should_use_jndi"],
should_validate_server_certificate=var["connection_should_validate_server_certificate"],
ssl_ca=var["connection_ssl_ca"],
ssl_cert=var["connection_ssl_cert"],
ssl_crl=var["connection_ssl_crl"],
ssl_key=var["connection_ssl_key"],
ssl_key_password=var["connection_ssl_key_password"],
ssl_mode=var["connection_ssl_mode"],
stream_pool_id=oci_streaming_stream_pool["test_stream_pool"]["id"],
subnet_id=oci_core_subnet["test_subnet"]["id"],
tenancy_id=oci_identity_tenancy["test_tenancy"]["id"],
trust_store=var["connection_trust_store"],
trust_store_password=var["connection_trust_store_password"],
url=var["connection_url"],
user_id=oci_identity_user["test_user"]["id"],
username=var["connection_username"],
vault_id=oci_kms_vault["test_vault"]["id"],
wallet=var["connection_wallet"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testConnection = new oci.goldengate.Connection("testConnection", {
compartmentId: _var.compartment_id,
connectionType: _var.connection_connection_type,
displayName: _var.connection_display_name,
technologyType: _var.connection_technology_type,
accessKeyId: oci_kms_key.test_key.id,
accountKey: _var.connection_account_key,
accountName: _var.connection_account_name,
additionalAttributes: [{
name: _var.connection_additional_attributes_name,
value: _var.connection_additional_attributes_value,
}],
authenticationType: _var.connection_authentication_type,
azureTenantId: oci_golden_gate_azure_tenant.test_azure_tenant.id,
bootstrapServers: [{
host: _var.connection_bootstrap_servers_host,
port: _var.connection_bootstrap_servers_port,
privateIp: _var.connection_bootstrap_servers_private_ip,
}],
clientId: oci_golden_gate_client.test_client.id,
clientSecret: _var.connection_client_secret,
connectionFactory: _var.connection_connection_factory,
connectionString: _var.connection_connection_string,
connectionUrl: _var.connection_connection_url,
consumerProperties: _var.connection_consumer_properties,
coreSiteXml: _var.connection_core_site_xml,
databaseId: oci_database_database.test_database.id,
databaseName: oci_database_database.test_database.name,
dbSystemId: oci_database_db_system.test_db_system.id,
definedTags: {
"foo-namespace.bar-key": "value",
},
deploymentId: oci_golden_gate_deployment.test_deployment.id,
description: _var.connection_description,
endpoint: _var.connection_endpoint,
freeformTags: {
"bar-key": "value",
},
host: _var.connection_host,
jndiConnectionFactory: _var.connection_jndi_connection_factory,
jndiInitialContextFactory: _var.connection_jndi_initial_context_factory,
jndiProviderUrl: _var.connection_jndi_provider_url,
jndiSecurityCredentials: _var.connection_jndi_security_credentials,
jndiSecurityPrincipal: _var.connection_jndi_security_principal,
keyId: oci_kms_key.test_key.id,
keyStore: _var.connection_key_store,
keyStorePassword: _var.connection_key_store_password,
nsgIds: _var.connection_nsg_ids,
password: _var.connection_password,
port: _var.connection_port,
privateIp: _var.connection_private_ip,
privateKeyFile: _var.connection_private_key_file,
privateKeyPassphrase: _var.connection_private_key_passphrase,
producerProperties: _var.connection_producer_properties,
publicKeyFingerprint: _var.connection_public_key_fingerprint,
region: _var.connection_region,
sasToken: _var.connection_sas_token,
secretAccessKey: _var.connection_secret_access_key,
securityProtocol: _var.connection_security_protocol,
sessionMode: _var.connection_session_mode,
shouldUseJndi: _var.connection_should_use_jndi,
shouldValidateServerCertificate: _var.connection_should_validate_server_certificate,
sslCa: _var.connection_ssl_ca,
sslCert: _var.connection_ssl_cert,
sslCrl: _var.connection_ssl_crl,
sslKey: _var.connection_ssl_key,
sslKeyPassword: _var.connection_ssl_key_password,
sslMode: _var.connection_ssl_mode,
streamPoolId: oci_streaming_stream_pool.test_stream_pool.id,
subnetId: oci_core_subnet.test_subnet.id,
tenancyId: oci_identity_tenancy.test_tenancy.id,
trustStore: _var.connection_trust_store,
trustStorePassword: _var.connection_trust_store_password,
url: _var.connection_url,
userId: oci_identity_user.test_user.id,
username: _var.connection_username,
vaultId: oci_kms_vault.test_vault.id,
wallet: _var.connection_wallet,
});
resources:
testConnection:
type: oci:GoldenGate:Connection
properties:
#Required
compartmentId: ${var.compartment_id}
connectionType: ${var.connection_connection_type}
displayName: ${var.connection_display_name}
technologyType: ${var.connection_technology_type}
#Optional
accessKeyId: ${oci_kms_key.test_key.id}
accountKey: ${var.connection_account_key}
accountName: ${var.connection_account_name}
additionalAttributes:
- name: ${var.connection_additional_attributes_name}
value: ${var.connection_additional_attributes_value}
authenticationType: ${var.connection_authentication_type}
azureTenantId: ${oci_golden_gate_azure_tenant.test_azure_tenant.id}
bootstrapServers:
- host: ${var.connection_bootstrap_servers_host}
port: ${var.connection_bootstrap_servers_port}
privateIp: ${var.connection_bootstrap_servers_private_ip}
clientId: ${oci_golden_gate_client.test_client.id}
clientSecret: ${var.connection_client_secret}
connectionFactory: ${var.connection_connection_factory}
connectionString: ${var.connection_connection_string}
connectionUrl: ${var.connection_connection_url}
consumerProperties: ${var.connection_consumer_properties}
coreSiteXml: ${var.connection_core_site_xml}
databaseId: ${oci_database_database.test_database.id}
databaseName: ${oci_database_database.test_database.name}
dbSystemId: ${oci_database_db_system.test_db_system.id}
definedTags:
foo-namespace.bar-key: value
deploymentId: ${oci_golden_gate_deployment.test_deployment.id}
description: ${var.connection_description}
endpoint: ${var.connection_endpoint}
freeformTags:
bar-key: value
host: ${var.connection_host}
jndiConnectionFactory: ${var.connection_jndi_connection_factory}
jndiInitialContextFactory: ${var.connection_jndi_initial_context_factory}
jndiProviderUrl: ${var.connection_jndi_provider_url}
jndiSecurityCredentials: ${var.connection_jndi_security_credentials}
jndiSecurityPrincipal: ${var.connection_jndi_security_principal}
keyId: ${oci_kms_key.test_key.id}
keyStore: ${var.connection_key_store}
keyStorePassword: ${var.connection_key_store_password}
nsgIds: ${var.connection_nsg_ids}
password: ${var.connection_password}
port: ${var.connection_port}
privateIp: ${var.connection_private_ip}
privateKeyFile: ${var.connection_private_key_file}
privateKeyPassphrase: ${var.connection_private_key_passphrase}
producerProperties: ${var.connection_producer_properties}
publicKeyFingerprint: ${var.connection_public_key_fingerprint}
region: ${var.connection_region}
sasToken: ${var.connection_sas_token}
secretAccessKey: ${var.connection_secret_access_key}
securityProtocol: ${var.connection_security_protocol}
sessionMode: ${var.connection_session_mode}
shouldUseJndi: ${var.connection_should_use_jndi}
shouldValidateServerCertificate: ${var.connection_should_validate_server_certificate}
sslCa: ${var.connection_ssl_ca}
sslCert: ${var.connection_ssl_cert}
sslCrl: ${var.connection_ssl_crl}
sslKey: ${var.connection_ssl_key}
sslKeyPassword: ${var.connection_ssl_key_password}
sslMode: ${var.connection_ssl_mode}
streamPoolId: ${oci_streaming_stream_pool.test_stream_pool.id}
subnetId: ${oci_core_subnet.test_subnet.id}
tenancyId: ${oci_identity_tenancy.test_tenancy.id}
trustStore: ${var.connection_trust_store}
trustStorePassword: ${var.connection_trust_store_password}
url: ${var.connection_url}
userId: ${oci_identity_user.test_user.id}
username: ${var.connection_username}
vaultId: ${oci_kms_vault.test_vault.id}
wallet: ${var.connection_wallet}
Create Connection Resource
new Connection(name: string, args: ConnectionArgs, opts?: CustomResourceOptions);
@overload
def Connection(resource_name: str,
opts: Optional[ResourceOptions] = None,
access_key_id: Optional[str] = None,
account_key: Optional[str] = None,
account_name: Optional[str] = None,
additional_attributes: Optional[Sequence[_goldengate.ConnectionAdditionalAttributeArgs]] = None,
authentication_type: Optional[str] = None,
azure_tenant_id: Optional[str] = None,
bootstrap_servers: Optional[Sequence[_goldengate.ConnectionBootstrapServerArgs]] = None,
client_id: Optional[str] = None,
client_secret: Optional[str] = None,
compartment_id: Optional[str] = None,
connection_factory: Optional[str] = None,
connection_string: Optional[str] = None,
connection_type: Optional[str] = None,
connection_url: Optional[str] = None,
consumer_properties: Optional[str] = None,
core_site_xml: Optional[str] = None,
database_id: Optional[str] = None,
database_name: Optional[str] = None,
db_system_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
deployment_id: Optional[str] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
endpoint: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
host: Optional[str] = None,
jndi_connection_factory: Optional[str] = None,
jndi_initial_context_factory: Optional[str] = None,
jndi_provider_url: Optional[str] = None,
jndi_security_credentials: Optional[str] = None,
jndi_security_principal: Optional[str] = None,
key_id: Optional[str] = None,
key_store: Optional[str] = None,
key_store_password: Optional[str] = None,
nsg_ids: Optional[Sequence[str]] = None,
password: Optional[str] = None,
port: Optional[int] = None,
private_ip: Optional[str] = None,
private_key_file: Optional[str] = None,
private_key_passphrase: Optional[str] = None,
producer_properties: Optional[str] = None,
public_key_fingerprint: Optional[str] = None,
region: Optional[str] = None,
sas_token: Optional[str] = None,
secret_access_key: Optional[str] = None,
security_protocol: Optional[str] = None,
session_mode: Optional[str] = None,
should_use_jndi: Optional[bool] = None,
should_validate_server_certificate: Optional[bool] = None,
ssl_ca: Optional[str] = None,
ssl_cert: Optional[str] = None,
ssl_crl: Optional[str] = None,
ssl_key: Optional[str] = None,
ssl_key_password: Optional[str] = None,
ssl_mode: Optional[str] = None,
stream_pool_id: Optional[str] = None,
subnet_id: Optional[str] = None,
technology_type: Optional[str] = None,
tenancy_id: Optional[str] = None,
trust_store: Optional[str] = None,
trust_store_password: Optional[str] = None,
url: Optional[str] = None,
user_id: Optional[str] = None,
username: Optional[str] = None,
vault_id: Optional[str] = None,
wallet: Optional[str] = None)
@overload
def Connection(resource_name: str,
args: ConnectionArgs,
opts: Optional[ResourceOptions] = None)
func NewConnection(ctx *Context, name string, args ConnectionArgs, opts ...ResourceOption) (*Connection, error)
public Connection(string name, ConnectionArgs args, CustomResourceOptions? opts = null)
public Connection(String name, ConnectionArgs args)
public Connection(String name, ConnectionArgs args, CustomResourceOptions options)
type: oci:GoldenGate:Connection
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ConnectionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConnectionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Connection Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Connection resource accepts the following input properties:
- Compartment
Id string (Updatable) The OCID of the compartment being referenced.
- Connection
Type string (Updatable) The connection type.
- Display
Name string (Updatable) An object's Display Name.
- Technology
Type string The Kafka (e.g. Confluent) Schema Registry technology type.
- Access
Key stringId (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- Account
Key string (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
- Account
Name string (Updatable) Sets the Azure storage account name.
- Additional
Attributes List<ConnectionAdditional Attribute Args> (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
- Authentication
Type string (Updatable) Used authentication mechanism.
- Azure
Tenant stringId (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
- Bootstrap
Servers List<ConnectionBootstrap Server Args> (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"
- Client
Id string (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
- Client
Secret string (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
- Connection
Factory string (Updatable) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'
- Connection
String string (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://.sql.azuresynapse.net:1433;database=;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
- Connection
Url string (Updatable) JAVA_MESSAGE_SERVICE: Connection URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676', SNOWFLAKE: JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=&db='
- Consumer
Properties string (Updatable) The base64 encoded content of the consumer.properties file.
- Core
Site stringXml (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
- Database
Id string (Updatable) The OCID of the database being referenced.
- Database
Name string (Updatable) The name of the database.
- Db
System stringId (Updatable) The OCID of the database system being referenced.
- Dictionary<string, object>
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Deployment
Id string (Updatable) The OCID of the deployment being referenced.
- Description string
(Updatable) Metadata about this specific object.
- Endpoint string
(Updatable) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
- Dictionary<string, object>
(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"}
- Host string
(Updatable) The name or address of a host.
- Jndi
Connection stringFactory (Updatable) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'
- Jndi
Initial stringContext 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'
- Jndi
Provider stringUrl (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'
- Jndi
Security stringCredentials (Updatable) The password associated to the principal.
- Jndi
Security stringPrincipal (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
- Key
Id string (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.
- Key
Store string (Updatable) The base64 encoded content of the KeyStore file.
- Key
Store stringPassword (Updatable) The KeyStore password.
- Nsg
Ids List<string> (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- Password string
(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.
- Port int
(Updatable) The port of an endpoint usually specified for a connection.
- Private
Ip string (Updatable) 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.
- Private
Key stringFile (Updatable) The base64 encoded content of private key file in PEM format.
- Private
Key stringPassphrase (Updatable) Password if the private key file is encrypted.
- Producer
Properties string (Updatable) The base64 encoded content of the producer.properties file.
- Public
Key stringFingerprint (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
- Region string
(Updatable) The name of the region. e.g.: us-ashburn-1
- Sas
Token string (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
- Secret
Access stringKey (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- Security
Protocol string (Updatable) Security Protocol.
- Session
Mode string (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.
- Should
Use boolJndi (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
- Should
Validate boolServer Certificate (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
- Ssl
Ca string (Updatable) Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
- Ssl
Cert string (Updatable) Client Certificate - The base64 encoded content of client-cert.pem file containing the client public key (for 2-way SSL).
- Ssl
Crl string (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.
- Ssl
Key string (Updatable) Client Key - The client-key.pem containing the client private key (for 2-way SSL).
- Ssl
Key stringPassword (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
- Ssl
Mode string (Updatable) SSL modes for PostgreSQL.
- Stream
Pool stringId (Updatable) The OCID of the stream pool being referenced.
- Subnet
Id string The OCID of the subnet being referenced.
- Tenancy
Id string (Updatable) The OCID of the related Oracle Cloud Infrastructure tenancy.
- Trust
Store string (Updatable) The base64 encoded content of the TrustStore file.
- Trust
Store stringPassword (Updatable) The TrustStore password.
- Url string
(Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
- User
Id string (Updatable) The OCID of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database/ Object Storage. The user must have write access.
- Username string
(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 sensitivity requirements defined in it.
- Vault
Id string (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.
- Wallet string
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Compartment
Id string (Updatable) The OCID of the compartment being referenced.
- Connection
Type string (Updatable) The connection type.
- Display
Name string (Updatable) An object's Display Name.
- Technology
Type string The Kafka (e.g. Confluent) Schema Registry technology type.
- Access
Key stringId (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- Account
Key string (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
- Account
Name string (Updatable) Sets the Azure storage account name.
- Additional
Attributes []ConnectionAdditional Attribute Args (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
- Authentication
Type string (Updatable) Used authentication mechanism.
- Azure
Tenant stringId (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
- Bootstrap
Servers []ConnectionBootstrap Server Args (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"
- Client
Id string (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
- Client
Secret string (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
- Connection
Factory string (Updatable) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'
- Connection
String string (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://.sql.azuresynapse.net:1433;database=;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
- Connection
Url string (Updatable) JAVA_MESSAGE_SERVICE: Connection URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676', SNOWFLAKE: JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=&db='
- Consumer
Properties string (Updatable) The base64 encoded content of the consumer.properties file.
- Core
Site stringXml (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
- Database
Id string (Updatable) The OCID of the database being referenced.
- Database
Name string (Updatable) The name of the database.
- Db
System stringId (Updatable) The OCID of the database system being referenced.
- map[string]interface{}
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Deployment
Id string (Updatable) The OCID of the deployment being referenced.
- Description string
(Updatable) Metadata about this specific object.
- Endpoint string
(Updatable) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
- map[string]interface{}
(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"}
- Host string
(Updatable) The name or address of a host.
- Jndi
Connection stringFactory (Updatable) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'
- Jndi
Initial stringContext 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'
- Jndi
Provider stringUrl (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'
- Jndi
Security stringCredentials (Updatable) The password associated to the principal.
- Jndi
Security stringPrincipal (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
- Key
Id string (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.
- Key
Store string (Updatable) The base64 encoded content of the KeyStore file.
- Key
Store stringPassword (Updatable) The KeyStore password.
- Nsg
Ids []string (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- Password string
(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.
- Port int
(Updatable) The port of an endpoint usually specified for a connection.
- Private
Ip string (Updatable) 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.
- Private
Key stringFile (Updatable) The base64 encoded content of private key file in PEM format.
- Private
Key stringPassphrase (Updatable) Password if the private key file is encrypted.
- Producer
Properties string (Updatable) The base64 encoded content of the producer.properties file.
- Public
Key stringFingerprint (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
- Region string
(Updatable) The name of the region. e.g.: us-ashburn-1
- Sas
Token string (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
- Secret
Access stringKey (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- Security
Protocol string (Updatable) Security Protocol.
- Session
Mode string (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.
- Should
Use boolJndi (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
- Should
Validate boolServer Certificate (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
- Ssl
Ca string (Updatable) Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
- Ssl
Cert string (Updatable) Client Certificate - The base64 encoded content of client-cert.pem file containing the client public key (for 2-way SSL).
- Ssl
Crl string (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.
- Ssl
Key string (Updatable) Client Key - The client-key.pem containing the client private key (for 2-way SSL).
- Ssl
Key stringPassword (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
- Ssl
Mode string (Updatable) SSL modes for PostgreSQL.
- Stream
Pool stringId (Updatable) The OCID of the stream pool being referenced.
- Subnet
Id string The OCID of the subnet being referenced.
- Tenancy
Id string (Updatable) The OCID of the related Oracle Cloud Infrastructure tenancy.
- Trust
Store string (Updatable) The base64 encoded content of the TrustStore file.
- Trust
Store stringPassword (Updatable) The TrustStore password.
- Url string
(Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
- User
Id string (Updatable) The OCID of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database/ Object Storage. The user must have write access.
- Username string
(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 sensitivity requirements defined in it.
- Vault
Id string (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.
- Wallet string
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id String (Updatable) The OCID of the compartment being referenced.
- connection
Type String (Updatable) The connection type.
- display
Name String (Updatable) An object's Display Name.
- technology
Type String The Kafka (e.g. Confluent) Schema Registry technology type.
- access
Key StringId (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- account
Key String (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
- account
Name String (Updatable) Sets the Azure storage account name.
- additional
Attributes List<ConnectionAdditional Attribute Args> (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
- authentication
Type String (Updatable) Used authentication mechanism.
- azure
Tenant StringId (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
- bootstrap
Servers List<ConnectionBootstrap Server Args> (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"
- client
Id String (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
- client
Secret String (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
- connection
Factory String (Updatable) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'
- connection
String String (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://.sql.azuresynapse.net:1433;database=;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
- connection
Url String (Updatable) JAVA_MESSAGE_SERVICE: Connection URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676', SNOWFLAKE: JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=&db='
- consumer
Properties String (Updatable) The base64 encoded content of the consumer.properties file.
- core
Site StringXml (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
- database
Id String (Updatable) The OCID of the database being referenced.
- database
Name String (Updatable) The name of the database.
- db
System StringId (Updatable) The OCID of the database system being referenced.
- Map<String,Object>
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment
Id String (Updatable) The OCID of the deployment being referenced.
- description String
(Updatable) Metadata about this specific object.
- endpoint String
(Updatable) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
- Map<String,Object>
(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"}
- host String
(Updatable) The name or address of a host.
- jndi
Connection StringFactory (Updatable) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'
- jndi
Initial StringContext 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'
- jndi
Provider StringUrl (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'
- jndi
Security StringCredentials (Updatable) The password associated to the principal.
- jndi
Security StringPrincipal (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
- key
Id String (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.
- key
Store String (Updatable) The base64 encoded content of the KeyStore file.
- key
Store StringPassword (Updatable) The KeyStore password.
- nsg
Ids List<String> (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- password String
(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.
- port Integer
(Updatable) The port of an endpoint usually specified for a connection.
- private
Ip String (Updatable) 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.
- private
Key StringFile (Updatable) The base64 encoded content of private key file in PEM format.
- private
Key StringPassphrase (Updatable) Password if the private key file is encrypted.
- producer
Properties String (Updatable) The base64 encoded content of the producer.properties file.
- public
Key StringFingerprint (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
- region String
(Updatable) The name of the region. e.g.: us-ashburn-1
- sas
Token String (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
- secret
Access StringKey (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- security
Protocol String (Updatable) Security Protocol.
- session
Mode String (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.
- should
Use BooleanJndi (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
- should
Validate BooleanServer Certificate (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
- ssl
Ca String (Updatable) Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
- ssl
Cert String (Updatable) Client Certificate - The base64 encoded content of client-cert.pem file containing the client public key (for 2-way SSL).
- ssl
Crl String (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.
- ssl
Key String (Updatable) Client Key - The client-key.pem containing the client private key (for 2-way SSL).
- ssl
Key StringPassword (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
- ssl
Mode String (Updatable) SSL modes for PostgreSQL.
- stream
Pool StringId (Updatable) The OCID of the stream pool being referenced.
- subnet
Id String The OCID of the subnet being referenced.
- tenancy
Id String (Updatable) The OCID of the related Oracle Cloud Infrastructure tenancy.
- trust
Store String (Updatable) The base64 encoded content of the TrustStore file.
- trust
Store StringPassword (Updatable) The TrustStore password.
- url String
(Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
- user
Id String (Updatable) The OCID of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database/ Object Storage. The user must have write access.
- username String
(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 sensitivity requirements defined in it.
- vault
Id String (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.
- wallet String
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id string (Updatable) The OCID of the compartment being referenced.
- connection
Type string (Updatable) The connection type.
- display
Name string (Updatable) An object's Display Name.
- technology
Type string The Kafka (e.g. Confluent) Schema Registry technology type.
- access
Key stringId (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- account
Key string (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
- account
Name string (Updatable) Sets the Azure storage account name.
- additional
Attributes ConnectionAdditional Attribute Args[] (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
- authentication
Type string (Updatable) Used authentication mechanism.
- azure
Tenant stringId (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
- bootstrap
Servers ConnectionBootstrap Server Args[] (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"
- client
Id string (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
- client
Secret string (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
- connection
Factory string (Updatable) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'
- connection
String string (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://.sql.azuresynapse.net:1433;database=;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
- connection
Url string (Updatable) JAVA_MESSAGE_SERVICE: Connection URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676', SNOWFLAKE: JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=&db='
- consumer
Properties string (Updatable) The base64 encoded content of the consumer.properties file.
- core
Site stringXml (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
- database
Id string (Updatable) The OCID of the database being referenced.
- database
Name string (Updatable) The name of the database.
- db
System stringId (Updatable) The OCID of the database system being referenced.
- {[key: string]: any}
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment
Id string (Updatable) The OCID of the deployment being referenced.
- description string
(Updatable) Metadata about this specific object.
- endpoint string
(Updatable) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
- {[key: string]: any}
(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"}
- host string
(Updatable) The name or address of a host.
- jndi
Connection stringFactory (Updatable) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'
- jndi
Initial stringContext 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'
- jndi
Provider stringUrl (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'
- jndi
Security stringCredentials (Updatable) The password associated to the principal.
- jndi
Security stringPrincipal (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
- key
Id string (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.
- key
Store string (Updatable) The base64 encoded content of the KeyStore file.
- key
Store stringPassword (Updatable) The KeyStore password.
- nsg
Ids string[] (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- password string
(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.
- port number
(Updatable) The port of an endpoint usually specified for a connection.
- private
Ip string (Updatable) 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.
- private
Key stringFile (Updatable) The base64 encoded content of private key file in PEM format.
- private
Key stringPassphrase (Updatable) Password if the private key file is encrypted.
- producer
Properties string (Updatable) The base64 encoded content of the producer.properties file.
- public
Key stringFingerprint (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
- region string
(Updatable) The name of the region. e.g.: us-ashburn-1
- sas
Token string (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
- secret
Access stringKey (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- security
Protocol string (Updatable) Security Protocol.
- session
Mode string (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.
- should
Use booleanJndi (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
- should
Validate booleanServer Certificate (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
- ssl
Ca string (Updatable) Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
- ssl
Cert string (Updatable) Client Certificate - The base64 encoded content of client-cert.pem file containing the client public key (for 2-way SSL).
- ssl
Crl string (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.
- ssl
Key string (Updatable) Client Key - The client-key.pem containing the client private key (for 2-way SSL).
- ssl
Key stringPassword (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
- ssl
Mode string (Updatable) SSL modes for PostgreSQL.
- stream
Pool stringId (Updatable) The OCID of the stream pool being referenced.
- subnet
Id string The OCID of the subnet being referenced.
- tenancy
Id string (Updatable) The OCID of the related Oracle Cloud Infrastructure tenancy.
- trust
Store string (Updatable) The base64 encoded content of the TrustStore file.
- trust
Store stringPassword (Updatable) The TrustStore password.
- url string
(Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
- user
Id string (Updatable) The OCID of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database/ Object Storage. The user must have write access.
- username string
(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 sensitivity requirements defined in it.
- vault
Id string (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.
- wallet string
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment_
id str (Updatable) The OCID of the compartment being referenced.
- connection_
type str (Updatable) The connection type.
- display_
name str (Updatable) An object's Display Name.
- technology_
type str The Kafka (e.g. Confluent) Schema Registry technology type.
- access_
key_ strid (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- account_
key str (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
- account_
name str (Updatable) Sets the Azure storage account name.
- additional_
attributes ConnectionAdditional Attribute Args] (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
- authentication_
type str (Updatable) Used authentication mechanism.
- azure_
tenant_ strid (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
- bootstrap_
servers ConnectionBootstrap Server Args] (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"
- client_
id str (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
- client_
secret str (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
- connection_
factory str (Updatable) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'
- connection_
string str (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://.sql.azuresynapse.net:1433;database=;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
- connection_
url str (Updatable) JAVA_MESSAGE_SERVICE: Connection URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676', SNOWFLAKE: JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=&db='
- consumer_
properties str (Updatable) The base64 encoded content of the consumer.properties file.
- core_
site_ strxml (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
- database_
id str (Updatable) The OCID of the database being referenced.
- database_
name str (Updatable) The name of the database.
- db_
system_ strid (Updatable) The OCID of the database system being referenced.
- Mapping[str, Any]
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment_
id str (Updatable) The OCID of the deployment being referenced.
- description str
(Updatable) Metadata about this specific object.
- endpoint str
(Updatable) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
- Mapping[str, Any]
(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"}
- host str
(Updatable) The name or address of a host.
- jndi_
connection_ strfactory (Updatable) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'
- jndi_
initial_ strcontext_ 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'
- jndi_
provider_ strurl (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'
- jndi_
security_ strcredentials (Updatable) The password associated to the principal.
- jndi_
security_ strprincipal (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
- key_
id str (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.
- key_
store str (Updatable) The base64 encoded content of the KeyStore file.
- key_
store_ strpassword (Updatable) The KeyStore password.
- nsg_
ids Sequence[str] (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- password str
(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.
- port int
(Updatable) The port of an endpoint usually specified for a connection.
- private_
ip str (Updatable) 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.
- private_
key_ strfile (Updatable) The base64 encoded content of private key file in PEM format.
- private_
key_ strpassphrase (Updatable) Password if the private key file is encrypted.
- producer_
properties str (Updatable) The base64 encoded content of the producer.properties file.
- public_
key_ strfingerprint (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
- region str
(Updatable) The name of the region. e.g.: us-ashburn-1
- sas_
token str (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
- secret_
access_ strkey (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- security_
protocol str (Updatable) Security Protocol.
- session_
mode str (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.
- should_
use_ booljndi (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
- should_
validate_ boolserver_ certificate (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
- ssl_
ca str (Updatable) Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
- ssl_
cert str (Updatable) Client Certificate - The base64 encoded content of client-cert.pem file containing the client public key (for 2-way SSL).
- ssl_
crl str (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.
- ssl_
key str (Updatable) Client Key - The client-key.pem containing the client private key (for 2-way SSL).
- ssl_
key_ strpassword (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
- ssl_
mode str (Updatable) SSL modes for PostgreSQL.
- stream_
pool_ strid (Updatable) The OCID of the stream pool being referenced.
- subnet_
id str The OCID of the subnet being referenced.
- tenancy_
id str (Updatable) The OCID of the related Oracle Cloud Infrastructure tenancy.
- trust_
store str (Updatable) The base64 encoded content of the TrustStore file.
- trust_
store_ strpassword (Updatable) The TrustStore password.
- url str
(Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
- user_
id str (Updatable) The OCID of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database/ Object Storage. The user must have write access.
- username str
(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 sensitivity requirements defined in it.
- vault_
id str (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.
- wallet str
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id String (Updatable) The OCID of the compartment being referenced.
- connection
Type String (Updatable) The connection type.
- display
Name String (Updatable) An object's Display Name.
- technology
Type String The Kafka (e.g. Confluent) Schema Registry technology type.
- access
Key StringId (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- account
Key String (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
- account
Name String (Updatable) Sets the Azure storage account name.
- additional
Attributes List<Property Map> (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
- authentication
Type String (Updatable) Used authentication mechanism.
- azure
Tenant StringId (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
- bootstrap
Servers List<Property Map> (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"
- client
Id String (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
- client
Secret String (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
- connection
Factory String (Updatable) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'
- connection
String String (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://.sql.azuresynapse.net:1433;database=;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
- connection
Url String (Updatable) JAVA_MESSAGE_SERVICE: Connection URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676', SNOWFLAKE: JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=&db='
- consumer
Properties String (Updatable) The base64 encoded content of the consumer.properties file.
- core
Site StringXml (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
- database
Id String (Updatable) The OCID of the database being referenced.
- database
Name String (Updatable) The name of the database.
- db
System StringId (Updatable) The OCID of the database system being referenced.
- Map<Any>
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment
Id String (Updatable) The OCID of the deployment being referenced.
- description String
(Updatable) Metadata about this specific object.
- endpoint String
(Updatable) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
- Map<Any>
(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"}
- host String
(Updatable) The name or address of a host.
- jndi
Connection StringFactory (Updatable) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'
- jndi
Initial StringContext 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'
- jndi
Provider StringUrl (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'
- jndi
Security StringCredentials (Updatable) The password associated to the principal.
- jndi
Security StringPrincipal (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
- key
Id String (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.
- key
Store String (Updatable) The base64 encoded content of the KeyStore file.
- key
Store StringPassword (Updatable) The KeyStore password.
- nsg
Ids List<String> (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- password String
(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.
- port Number
(Updatable) The port of an endpoint usually specified for a connection.
- private
Ip String (Updatable) 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.
- private
Key StringFile (Updatable) The base64 encoded content of private key file in PEM format.
- private
Key StringPassphrase (Updatable) Password if the private key file is encrypted.
- producer
Properties String (Updatable) The base64 encoded content of the producer.properties file.
- public
Key StringFingerprint (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
- region String
(Updatable) The name of the region. e.g.: us-ashburn-1
- sas
Token String (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
- secret
Access StringKey (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- security
Protocol String (Updatable) Security Protocol.
- session
Mode String (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.
- should
Use BooleanJndi (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
- should
Validate BooleanServer Certificate (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
- ssl
Ca String (Updatable) Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
- ssl
Cert String (Updatable) Client Certificate - The base64 encoded content of client-cert.pem file containing the client public key (for 2-way SSL).
- ssl
Crl String (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.
- ssl
Key String (Updatable) Client Key - The client-key.pem containing the client private key (for 2-way SSL).
- ssl
Key StringPassword (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
- ssl
Mode String (Updatable) SSL modes for PostgreSQL.
- stream
Pool StringId (Updatable) The OCID of the stream pool being referenced.
- subnet
Id String The OCID of the subnet being referenced.
- tenancy
Id String (Updatable) The OCID of the related Oracle Cloud Infrastructure tenancy.
- trust
Store String (Updatable) The base64 encoded content of the TrustStore file.
- trust
Store StringPassword (Updatable) The TrustStore password.
- url String
(Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
- user
Id String (Updatable) The OCID of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database/ Object Storage. The user must have write access.
- username String
(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 sensitivity requirements defined in it.
- vault
Id String (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.
- wallet String
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the Connection resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Ingress
Ips List<ConnectionIngress Ip> List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
- Lifecycle
Details string 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.
- State string
Possible lifecycle states for connection.
- Dictionary<string, object>
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- Time
Created string The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Updated string The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- Id string
The provider-assigned unique ID for this managed resource.
- Ingress
Ips []ConnectionIngress Ip List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
- Lifecycle
Details string 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.
- State string
Possible lifecycle states for connection.
- map[string]interface{}
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- Time
Created string The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Updated string The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- id String
The provider-assigned unique ID for this managed resource.
- ingress
Ips List<ConnectionIngress Ip> List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
- lifecycle
Details String 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.
- state String
Possible lifecycle states for connection.
- Map<String,Object>
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Created String The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Updated String The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- id string
The provider-assigned unique ID for this managed resource.
- ingress
Ips ConnectionIngress Ip[] List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
- lifecycle
Details string 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.
- state string
Possible lifecycle states for connection.
- {[key: string]: any}
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Created string The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Updated string The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- id str
The provider-assigned unique ID for this managed resource.
- ingress_
ips ConnectionIngress Ip] List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
- lifecycle_
details str 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.
- state str
Possible lifecycle states for connection.
- Mapping[str, Any]
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time_
created str The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time_
updated str The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- id String
The provider-assigned unique ID for this managed resource.
- ingress
Ips List<Property Map> List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
- lifecycle
Details String 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.
- state String
Possible lifecycle states for connection.
- Map<Any>
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Created String The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Updated String The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
Look up Existing Connection Resource
Get an existing Connection resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ConnectionState, opts?: CustomResourceOptions): Connection
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_key_id: Optional[str] = None,
account_key: Optional[str] = None,
account_name: Optional[str] = None,
additional_attributes: Optional[Sequence[_goldengate.ConnectionAdditionalAttributeArgs]] = None,
authentication_type: Optional[str] = None,
azure_tenant_id: Optional[str] = None,
bootstrap_servers: Optional[Sequence[_goldengate.ConnectionBootstrapServerArgs]] = None,
client_id: Optional[str] = None,
client_secret: Optional[str] = None,
compartment_id: Optional[str] = None,
connection_factory: Optional[str] = None,
connection_string: Optional[str] = None,
connection_type: Optional[str] = None,
connection_url: Optional[str] = None,
consumer_properties: Optional[str] = None,
core_site_xml: Optional[str] = None,
database_id: Optional[str] = None,
database_name: Optional[str] = None,
db_system_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
deployment_id: Optional[str] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
endpoint: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
host: Optional[str] = None,
ingress_ips: Optional[Sequence[_goldengate.ConnectionIngressIpArgs]] = None,
jndi_connection_factory: Optional[str] = None,
jndi_initial_context_factory: Optional[str] = None,
jndi_provider_url: Optional[str] = None,
jndi_security_credentials: Optional[str] = None,
jndi_security_principal: Optional[str] = None,
key_id: Optional[str] = None,
key_store: Optional[str] = None,
key_store_password: Optional[str] = None,
lifecycle_details: Optional[str] = None,
nsg_ids: Optional[Sequence[str]] = None,
password: Optional[str] = None,
port: Optional[int] = None,
private_ip: Optional[str] = None,
private_key_file: Optional[str] = None,
private_key_passphrase: Optional[str] = None,
producer_properties: Optional[str] = None,
public_key_fingerprint: Optional[str] = None,
region: Optional[str] = None,
sas_token: Optional[str] = None,
secret_access_key: Optional[str] = None,
security_protocol: Optional[str] = None,
session_mode: Optional[str] = None,
should_use_jndi: Optional[bool] = None,
should_validate_server_certificate: Optional[bool] = None,
ssl_ca: Optional[str] = None,
ssl_cert: Optional[str] = None,
ssl_crl: Optional[str] = None,
ssl_key: Optional[str] = None,
ssl_key_password: Optional[str] = None,
ssl_mode: Optional[str] = None,
state: Optional[str] = None,
stream_pool_id: Optional[str] = None,
subnet_id: Optional[str] = None,
system_tags: Optional[Mapping[str, Any]] = None,
technology_type: Optional[str] = None,
tenancy_id: Optional[str] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None,
trust_store: Optional[str] = None,
trust_store_password: Optional[str] = None,
url: Optional[str] = None,
user_id: Optional[str] = None,
username: Optional[str] = None,
vault_id: Optional[str] = None,
wallet: Optional[str] = None) -> Connection
func GetConnection(ctx *Context, name string, id IDInput, state *ConnectionState, opts ...ResourceOption) (*Connection, error)
public static Connection Get(string name, Input<string> id, ConnectionState? state, CustomResourceOptions? opts = null)
public static Connection get(String name, Output<String> id, ConnectionState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Access
Key stringId (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- Account
Key string (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
- Account
Name string (Updatable) Sets the Azure storage account name.
- Additional
Attributes List<ConnectionAdditional Attribute Args> (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
- Authentication
Type string (Updatable) Used authentication mechanism.
- Azure
Tenant stringId (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
- Bootstrap
Servers List<ConnectionBootstrap Server Args> (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"
- Client
Id string (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
- Client
Secret string (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
- Compartment
Id string (Updatable) The OCID of the compartment being referenced.
- Connection
Factory string (Updatable) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'
- Connection
String string (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://.sql.azuresynapse.net:1433;database=;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
- Connection
Type string (Updatable) The connection type.
- Connection
Url string (Updatable) JAVA_MESSAGE_SERVICE: Connection URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676', SNOWFLAKE: JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=&db='
- Consumer
Properties string (Updatable) The base64 encoded content of the consumer.properties file.
- Core
Site stringXml (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
- Database
Id string (Updatable) The OCID of the database being referenced.
- Database
Name string (Updatable) The name of the database.
- Db
System stringId (Updatable) The OCID of the database system being referenced.
- Dictionary<string, object>
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Deployment
Id string (Updatable) The OCID of the deployment being referenced.
- Description string
(Updatable) Metadata about this specific object.
- Display
Name string (Updatable) An object's Display Name.
- Endpoint string
(Updatable) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
- Dictionary<string, object>
(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"}
- Host string
(Updatable) The name or address of a host.
- Ingress
Ips List<ConnectionIngress Ip Args> List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
- Jndi
Connection stringFactory (Updatable) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'
- Jndi
Initial stringContext 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'
- Jndi
Provider stringUrl (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'
- Jndi
Security stringCredentials (Updatable) The password associated to the principal.
- Jndi
Security stringPrincipal (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
- Key
Id string (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.
- Key
Store string (Updatable) The base64 encoded content of the KeyStore file.
- Key
Store stringPassword (Updatable) The KeyStore password.
- Lifecycle
Details string 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.
- Nsg
Ids List<string> (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- Password string
(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.
- Port int
(Updatable) The port of an endpoint usually specified for a connection.
- Private
Ip string (Updatable) 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.
- Private
Key stringFile (Updatable) The base64 encoded content of private key file in PEM format.
- Private
Key stringPassphrase (Updatable) Password if the private key file is encrypted.
- Producer
Properties string (Updatable) The base64 encoded content of the producer.properties file.
- Public
Key stringFingerprint (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
- Region string
(Updatable) The name of the region. e.g.: us-ashburn-1
- Sas
Token string (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
- Secret
Access stringKey (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- Security
Protocol string (Updatable) Security Protocol.
- Session
Mode string (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.
- Should
Use boolJndi (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
- Should
Validate boolServer Certificate (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
- Ssl
Ca string (Updatable) Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
- Ssl
Cert string (Updatable) Client Certificate - The base64 encoded content of client-cert.pem file containing the client public key (for 2-way SSL).
- Ssl
Crl string (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.
- Ssl
Key string (Updatable) Client Key - The client-key.pem containing the client private key (for 2-way SSL).
- Ssl
Key stringPassword (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
- Ssl
Mode string (Updatable) SSL modes for PostgreSQL.
- State string
Possible lifecycle states for connection.
- Stream
Pool stringId (Updatable) The OCID of the stream pool being referenced.
- Subnet
Id string The OCID of the subnet being referenced.
- Dictionary<string, object>
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- Technology
Type string The Kafka (e.g. Confluent) Schema Registry technology type.
- Tenancy
Id string (Updatable) The OCID of the related Oracle Cloud Infrastructure tenancy.
- Time
Created string The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Updated string The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Trust
Store string (Updatable) The base64 encoded content of the TrustStore file.
- Trust
Store stringPassword (Updatable) The TrustStore password.
- Url string
(Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
- User
Id string (Updatable) The OCID of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database/ Object Storage. The user must have write access.
- Username string
(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 sensitivity requirements defined in it.
- Vault
Id string (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.
- Wallet string
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Access
Key stringId (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- Account
Key string (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
- Account
Name string (Updatable) Sets the Azure storage account name.
- Additional
Attributes []ConnectionAdditional Attribute Args (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
- Authentication
Type string (Updatable) Used authentication mechanism.
- Azure
Tenant stringId (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
- Bootstrap
Servers []ConnectionBootstrap Server Args (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"
- Client
Id string (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
- Client
Secret string (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
- Compartment
Id string (Updatable) The OCID of the compartment being referenced.
- Connection
Factory string (Updatable) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'
- Connection
String string (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://.sql.azuresynapse.net:1433;database=;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
- Connection
Type string (Updatable) The connection type.
- Connection
Url string (Updatable) JAVA_MESSAGE_SERVICE: Connection URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676', SNOWFLAKE: JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=&db='
- Consumer
Properties string (Updatable) The base64 encoded content of the consumer.properties file.
- Core
Site stringXml (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
- Database
Id string (Updatable) The OCID of the database being referenced.
- Database
Name string (Updatable) The name of the database.
- Db
System stringId (Updatable) The OCID of the database system being referenced.
- map[string]interface{}
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Deployment
Id string (Updatable) The OCID of the deployment being referenced.
- Description string
(Updatable) Metadata about this specific object.
- Display
Name string (Updatable) An object's Display Name.
- Endpoint string
(Updatable) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
- map[string]interface{}
(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"}
- Host string
(Updatable) The name or address of a host.
- Ingress
Ips []ConnectionIngress Ip Args List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
- Jndi
Connection stringFactory (Updatable) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'
- Jndi
Initial stringContext 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'
- Jndi
Provider stringUrl (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'
- Jndi
Security stringCredentials (Updatable) The password associated to the principal.
- Jndi
Security stringPrincipal (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
- Key
Id string (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.
- Key
Store string (Updatable) The base64 encoded content of the KeyStore file.
- Key
Store stringPassword (Updatable) The KeyStore password.
- Lifecycle
Details string 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.
- Nsg
Ids []string (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- Password string
(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.
- Port int
(Updatable) The port of an endpoint usually specified for a connection.
- Private
Ip string (Updatable) 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.
- Private
Key stringFile (Updatable) The base64 encoded content of private key file in PEM format.
- Private
Key stringPassphrase (Updatable) Password if the private key file is encrypted.
- Producer
Properties string (Updatable) The base64 encoded content of the producer.properties file.
- Public
Key stringFingerprint (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
- Region string
(Updatable) The name of the region. e.g.: us-ashburn-1
- Sas
Token string (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
- Secret
Access stringKey (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- Security
Protocol string (Updatable) Security Protocol.
- Session
Mode string (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.
- Should
Use boolJndi (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
- Should
Validate boolServer Certificate (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
- Ssl
Ca string (Updatable) Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
- Ssl
Cert string (Updatable) Client Certificate - The base64 encoded content of client-cert.pem file containing the client public key (for 2-way SSL).
- Ssl
Crl string (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.
- Ssl
Key string (Updatable) Client Key - The client-key.pem containing the client private key (for 2-way SSL).
- Ssl
Key stringPassword (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
- Ssl
Mode string (Updatable) SSL modes for PostgreSQL.
- State string
Possible lifecycle states for connection.
- Stream
Pool stringId (Updatable) The OCID of the stream pool being referenced.
- Subnet
Id string The OCID of the subnet being referenced.
- map[string]interface{}
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- Technology
Type string The Kafka (e.g. Confluent) Schema Registry technology type.
- Tenancy
Id string (Updatable) The OCID of the related Oracle Cloud Infrastructure tenancy.
- Time
Created string The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Updated string The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Trust
Store string (Updatable) The base64 encoded content of the TrustStore file.
- Trust
Store stringPassword (Updatable) The TrustStore password.
- Url string
(Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
- User
Id string (Updatable) The OCID of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database/ Object Storage. The user must have write access.
- Username string
(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 sensitivity requirements defined in it.
- Vault
Id string (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.
- Wallet string
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- access
Key StringId (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- account
Key String (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
- account
Name String (Updatable) Sets the Azure storage account name.
- additional
Attributes List<ConnectionAdditional Attribute Args> (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
- authentication
Type String (Updatable) Used authentication mechanism.
- azure
Tenant StringId (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
- bootstrap
Servers List<ConnectionBootstrap Server Args> (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"
- client
Id String (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
- client
Secret String (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
- compartment
Id String (Updatable) The OCID of the compartment being referenced.
- connection
Factory String (Updatable) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'
- connection
String String (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://.sql.azuresynapse.net:1433;database=;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
- connection
Type String (Updatable) The connection type.
- connection
Url String (Updatable) JAVA_MESSAGE_SERVICE: Connection URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676', SNOWFLAKE: JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=&db='
- consumer
Properties String (Updatable) The base64 encoded content of the consumer.properties file.
- core
Site StringXml (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
- database
Id String (Updatable) The OCID of the database being referenced.
- database
Name String (Updatable) The name of the database.
- db
System StringId (Updatable) The OCID of the database system being referenced.
- Map<String,Object>
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment
Id String (Updatable) The OCID of the deployment being referenced.
- description String
(Updatable) Metadata about this specific object.
- display
Name String (Updatable) An object's Display Name.
- endpoint String
(Updatable) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
- Map<String,Object>
(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"}
- host String
(Updatable) The name or address of a host.
- ingress
Ips List<ConnectionIngress Ip Args> List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
- jndi
Connection StringFactory (Updatable) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'
- jndi
Initial StringContext 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'
- jndi
Provider StringUrl (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'
- jndi
Security StringCredentials (Updatable) The password associated to the principal.
- jndi
Security StringPrincipal (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
- key
Id String (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.
- key
Store String (Updatable) The base64 encoded content of the KeyStore file.
- key
Store StringPassword (Updatable) The KeyStore password.
- lifecycle
Details String 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.
- nsg
Ids List<String> (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- password String
(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.
- port Integer
(Updatable) The port of an endpoint usually specified for a connection.
- private
Ip String (Updatable) 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.
- private
Key StringFile (Updatable) The base64 encoded content of private key file in PEM format.
- private
Key StringPassphrase (Updatable) Password if the private key file is encrypted.
- producer
Properties String (Updatable) The base64 encoded content of the producer.properties file.
- public
Key StringFingerprint (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
- region String
(Updatable) The name of the region. e.g.: us-ashburn-1
- sas
Token String (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
- secret
Access StringKey (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- security
Protocol String (Updatable) Security Protocol.
- session
Mode String (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.
- should
Use BooleanJndi (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
- should
Validate BooleanServer Certificate (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
- ssl
Ca String (Updatable) Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
- ssl
Cert String (Updatable) Client Certificate - The base64 encoded content of client-cert.pem file containing the client public key (for 2-way SSL).
- ssl
Crl String (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.
- ssl
Key String (Updatable) Client Key - The client-key.pem containing the client private key (for 2-way SSL).
- ssl
Key StringPassword (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
- ssl
Mode String (Updatable) SSL modes for PostgreSQL.
- state String
Possible lifecycle states for connection.
- stream
Pool StringId (Updatable) The OCID of the stream pool being referenced.
- subnet
Id String The OCID of the subnet being referenced.
- Map<String,Object>
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- technology
Type String The Kafka (e.g. Confluent) Schema Registry technology type.
- tenancy
Id String (Updatable) The OCID of the related Oracle Cloud Infrastructure tenancy.
- time
Created String The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Updated String The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- trust
Store String (Updatable) The base64 encoded content of the TrustStore file.
- trust
Store StringPassword (Updatable) The TrustStore password.
- url String
(Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
- user
Id String (Updatable) The OCID of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database/ Object Storage. The user must have write access.
- username String
(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 sensitivity requirements defined in it.
- vault
Id String (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.
- wallet String
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- access
Key stringId (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- account
Key string (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
- account
Name string (Updatable) Sets the Azure storage account name.
- additional
Attributes ConnectionAdditional Attribute Args[] (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
- authentication
Type string (Updatable) Used authentication mechanism.
- azure
Tenant stringId (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
- bootstrap
Servers ConnectionBootstrap Server Args[] (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"
- client
Id string (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
- client
Secret string (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
- compartment
Id string (Updatable) The OCID of the compartment being referenced.
- connection
Factory string (Updatable) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'
- connection
String string (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://.sql.azuresynapse.net:1433;database=;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
- connection
Type string (Updatable) The connection type.
- connection
Url string (Updatable) JAVA_MESSAGE_SERVICE: Connection URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676', SNOWFLAKE: JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=&db='
- consumer
Properties string (Updatable) The base64 encoded content of the consumer.properties file.
- core
Site stringXml (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
- database
Id string (Updatable) The OCID of the database being referenced.
- database
Name string (Updatable) The name of the database.
- db
System stringId (Updatable) The OCID of the database system being referenced.
- {[key: string]: any}
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment
Id string (Updatable) The OCID of the deployment being referenced.
- description string
(Updatable) Metadata about this specific object.
- display
Name string (Updatable) An object's Display Name.
- endpoint string
(Updatable) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
- {[key: string]: any}
(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"}
- host string
(Updatable) The name or address of a host.
- ingress
Ips ConnectionIngress Ip Args[] List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
- jndi
Connection stringFactory (Updatable) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'
- jndi
Initial stringContext 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'
- jndi
Provider stringUrl (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'
- jndi
Security stringCredentials (Updatable) The password associated to the principal.
- jndi
Security stringPrincipal (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
- key
Id string (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.
- key
Store string (Updatable) The base64 encoded content of the KeyStore file.
- key
Store stringPassword (Updatable) The KeyStore password.
- lifecycle
Details string 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.
- nsg
Ids string[] (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- password string
(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.
- port number
(Updatable) The port of an endpoint usually specified for a connection.
- private
Ip string (Updatable) 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.
- private
Key stringFile (Updatable) The base64 encoded content of private key file in PEM format.
- private
Key stringPassphrase (Updatable) Password if the private key file is encrypted.
- producer
Properties string (Updatable) The base64 encoded content of the producer.properties file.
- public
Key stringFingerprint (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
- region string
(Updatable) The name of the region. e.g.: us-ashburn-1
- sas
Token string (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
- secret
Access stringKey (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- security
Protocol string (Updatable) Security Protocol.
- session
Mode string (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.
- should
Use booleanJndi (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
- should
Validate booleanServer Certificate (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
- ssl
Ca string (Updatable) Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
- ssl
Cert string (Updatable) Client Certificate - The base64 encoded content of client-cert.pem file containing the client public key (for 2-way SSL).
- ssl
Crl string (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.
- ssl
Key string (Updatable) Client Key - The client-key.pem containing the client private key (for 2-way SSL).
- ssl
Key stringPassword (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
- ssl
Mode string (Updatable) SSL modes for PostgreSQL.
- state string
Possible lifecycle states for connection.
- stream
Pool stringId (Updatable) The OCID of the stream pool being referenced.
- subnet
Id string The OCID of the subnet being referenced.
- {[key: string]: any}
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- technology
Type string The Kafka (e.g. Confluent) Schema Registry technology type.
- tenancy
Id string (Updatable) The OCID of the related Oracle Cloud Infrastructure tenancy.
- time
Created string The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Updated string The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- trust
Store string (Updatable) The base64 encoded content of the TrustStore file.
- trust
Store stringPassword (Updatable) The TrustStore password.
- url string
(Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
- user
Id string (Updatable) The OCID of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database/ Object Storage. The user must have write access.
- username string
(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 sensitivity requirements defined in it.
- vault
Id string (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.
- wallet string
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- access_
key_ strid (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- account_
key str (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
- account_
name str (Updatable) Sets the Azure storage account name.
- additional_
attributes ConnectionAdditional Attribute Args] (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
- authentication_
type str (Updatable) Used authentication mechanism.
- azure_
tenant_ strid (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
- bootstrap_
servers ConnectionBootstrap Server Args] (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"
- client_
id str (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
- client_
secret str (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
- compartment_
id str (Updatable) The OCID of the compartment being referenced.
- connection_
factory str (Updatable) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'
- connection_
string str (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://.sql.azuresynapse.net:1433;database=;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
- connection_
type str (Updatable) The connection type.
- connection_
url str (Updatable) JAVA_MESSAGE_SERVICE: Connection URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676', SNOWFLAKE: JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=&db='
- consumer_
properties str (Updatable) The base64 encoded content of the consumer.properties file.
- core_
site_ strxml (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
- database_
id str (Updatable) The OCID of the database being referenced.
- database_
name str (Updatable) The name of the database.
- db_
system_ strid (Updatable) The OCID of the database system being referenced.
- Mapping[str, Any]
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment_
id str (Updatable) The OCID of the deployment being referenced.
- description str
(Updatable) Metadata about this specific object.
- display_
name str (Updatable) An object's Display Name.
- endpoint str
(Updatable) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
- Mapping[str, Any]
(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"}
- host str
(Updatable) The name or address of a host.
- ingress_
ips ConnectionIngress Ip Args] List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
- jndi_
connection_ strfactory (Updatable) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'
- jndi_
initial_ strcontext_ 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'
- jndi_
provider_ strurl (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'
- jndi_
security_ strcredentials (Updatable) The password associated to the principal.
- jndi_
security_ strprincipal (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
- key_
id str (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.
- key_
store str (Updatable) The base64 encoded content of the KeyStore file.
- key_
store_ strpassword (Updatable) The KeyStore password.
- lifecycle_
details str 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.
- nsg_
ids Sequence[str] (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- password str
(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.
- port int
(Updatable) The port of an endpoint usually specified for a connection.
- private_
ip str (Updatable) 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.
- private_
key_ strfile (Updatable) The base64 encoded content of private key file in PEM format.
- private_
key_ strpassphrase (Updatable) Password if the private key file is encrypted.
- producer_
properties str (Updatable) The base64 encoded content of the producer.properties file.
- public_
key_ strfingerprint (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
- region str
(Updatable) The name of the region. e.g.: us-ashburn-1
- sas_
token str (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
- secret_
access_ strkey (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- security_
protocol str (Updatable) Security Protocol.
- session_
mode str (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.
- should_
use_ booljndi (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
- should_
validate_ boolserver_ certificate (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
- ssl_
ca str (Updatable) Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
- ssl_
cert str (Updatable) Client Certificate - The base64 encoded content of client-cert.pem file containing the client public key (for 2-way SSL).
- ssl_
crl str (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.
- ssl_
key str (Updatable) Client Key - The client-key.pem containing the client private key (for 2-way SSL).
- ssl_
key_ strpassword (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
- ssl_
mode str (Updatable) SSL modes for PostgreSQL.
- state str
Possible lifecycle states for connection.
- stream_
pool_ strid (Updatable) The OCID of the stream pool being referenced.
- subnet_
id str The OCID of the subnet being referenced.
- Mapping[str, Any]
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- technology_
type str The Kafka (e.g. Confluent) Schema Registry technology type.
- tenancy_
id str (Updatable) The OCID of the related Oracle Cloud Infrastructure tenancy.
- time_
created str The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time_
updated str The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- trust_
store str (Updatable) The base64 encoded content of the TrustStore file.
- trust_
store_ strpassword (Updatable) The TrustStore password.
- url str
(Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
- user_
id str (Updatable) The OCID of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database/ Object Storage. The user must have write access.
- username str
(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 sensitivity requirements defined in it.
- vault_
id str (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.
- wallet str
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- access
Key StringId (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- account
Key String (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
- account
Name String (Updatable) Sets the Azure storage account name.
- additional
Attributes List<Property Map> (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
- authentication
Type String (Updatable) Used authentication mechanism.
- azure
Tenant StringId (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
- bootstrap
Servers List<Property Map> (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"
- client
Id String (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
- client
Secret String (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
- compartment
Id String (Updatable) The OCID of the compartment being referenced.
- connection
Factory String (Updatable) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'
- connection
String String (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://.sql.azuresynapse.net:1433;database=;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
- connection
Type String (Updatable) The connection type.
- connection
Url String (Updatable) JAVA_MESSAGE_SERVICE: Connection URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676', SNOWFLAKE: JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=&db='
- consumer
Properties String (Updatable) The base64 encoded content of the consumer.properties file.
- core
Site StringXml (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
- database
Id String (Updatable) The OCID of the database being referenced.
- database
Name String (Updatable) The name of the database.
- db
System StringId (Updatable) The OCID of the database system being referenced.
- Map<Any>
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment
Id String (Updatable) The OCID of the deployment being referenced.
- description String
(Updatable) Metadata about this specific object.
- display
Name String (Updatable) An object's Display Name.
- endpoint String
(Updatable) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
- Map<Any>
(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"}
- host String
(Updatable) The name or address of a host.
- ingress
Ips List<Property Map> List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
- jndi
Connection StringFactory (Updatable) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'
- jndi
Initial StringContext 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'
- jndi
Provider StringUrl (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'
- jndi
Security StringCredentials (Updatable) The password associated to the principal.
- jndi
Security StringPrincipal (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
- key
Id String (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.
- key
Store String (Updatable) The base64 encoded content of the KeyStore file.
- key
Store StringPassword (Updatable) The KeyStore password.
- lifecycle
Details String 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.
- nsg
Ids List<String> (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- password String
(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.
- port Number
(Updatable) The port of an endpoint usually specified for a connection.
- private
Ip String (Updatable) 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.
- private
Key StringFile (Updatable) The base64 encoded content of private key file in PEM format.
- private
Key StringPassphrase (Updatable) Password if the private key file is encrypted.
- producer
Properties String (Updatable) The base64 encoded content of the producer.properties file.
- public
Key StringFingerprint (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
- region String
(Updatable) The name of the region. e.g.: us-ashburn-1
- sas
Token String (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
- secret
Access StringKey (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
- security
Protocol String (Updatable) Security Protocol.
- session
Mode String (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.
- should
Use BooleanJndi (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
- should
Validate BooleanServer Certificate (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
- ssl
Ca String (Updatable) Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
- ssl
Cert String (Updatable) Client Certificate - The base64 encoded content of client-cert.pem file containing the client public key (for 2-way SSL).
- ssl
Crl String (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.
- ssl
Key String (Updatable) Client Key - The client-key.pem containing the client private key (for 2-way SSL).
- ssl
Key StringPassword (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
- ssl
Mode String (Updatable) SSL modes for PostgreSQL.
- state String
Possible lifecycle states for connection.
- stream
Pool StringId (Updatable) The OCID of the stream pool being referenced.
- subnet
Id String The OCID of the subnet being referenced.
- Map<Any>
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- technology
Type String The Kafka (e.g. Confluent) Schema Registry technology type.
- tenancy
Id String (Updatable) The OCID of the related Oracle Cloud Infrastructure tenancy.
- time
Created String The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Updated String The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- trust
Store String (Updatable) The base64 encoded content of the TrustStore file.
- trust
Store StringPassword (Updatable) The TrustStore password.
- url String
(Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
- user
Id String (Updatable) The OCID of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database/ Object Storage. The user must have write access.
- username String
(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 sensitivity requirements defined in it.
- vault
Id String (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.
- wallet String
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Supporting Types
ConnectionAdditionalAttribute
ConnectionBootstrapServer
- Host string
(Updatable) The name or address of a host.
- Port int
(Updatable) The port of an endpoint usually specified for a connection.
- Private
Ip string (Updatable) 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.
- Host string
(Updatable) The name or address of a host.
- Port int
(Updatable) The port of an endpoint usually specified for a connection.
- Private
Ip string (Updatable) 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.
- host String
(Updatable) The name or address of a host.
- port Integer
(Updatable) The port of an endpoint usually specified for a connection.
- private
Ip String (Updatable) 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.
- host string
(Updatable) The name or address of a host.
- port number
(Updatable) The port of an endpoint usually specified for a connection.
- private
Ip string (Updatable) 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.
- host str
(Updatable) The name or address of a host.
- port int
(Updatable) The port of an endpoint usually specified for a connection.
- private_
ip str (Updatable) 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.
- host String
(Updatable) The name or address of a host.
- port Number
(Updatable) The port of an endpoint usually specified for a connection.
- private
Ip String (Updatable) 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.
ConnectionIngressIp
- Ingress
Ip string A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
- Ingress
Ip string A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
- ingress
Ip String A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
- ingress
Ip string A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
- ingress_
ip str A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
- ingress
Ip String A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
Import
Connections can be imported using the id
, e.g.
$ pulumi import oci:GoldenGate/connection:Connection test_connection "id"
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.