import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Connection resource in Oracle Cloud Infrastructure Golden Gate service. * * Retrieves a Connection. * * ## Example Usage */ export declare function getConnection(args: GetConnectionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getConnection. */ export interface GetConnectionArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Connection. */ connectionId: string; } /** * A collection of values returned by getConnection. */ export interface GetConnectionResult { /** * * AMAZON_S3: Access key ID to access the Amazon S3 bucket. * * OCI_OBJECT_STORAGE_S3_API: Access Key ID from the Oracle Cloud Infrastructure IAM user's Customer Secret Key pair used to authenticate to Oracle Cloud Infrastructure Object Storage via the S3 Compatibility API. * Note: Despite the "Id" suffix, this value is not an Oracle Cloud Infrastructure OCID. */ readonly accessKeyId: string; /** * @deprecated The 'account_key' field has been deprecated. Please use 'account_key_secret_id' instead. */ readonly accountKey: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored. */ readonly accountKeySecretId: string; /** * Sets the Azure storage account name. */ readonly accountName: string; /** * An array of name-value pair attribute entries. Used as additional parameters in connection string. */ readonly additionalAttributes: outputs.GoldenGate.GetConnectionAdditionalAttribute[]; /** * Represents authentication details for an AI Model connection. */ readonly authDetails: outputs.GoldenGate.GetConnectionAuthDetail[]; /** * Authentication mode. It can be provided at creation of Oracle Autonomous Database Serverless connections, when a databaseId is provided. The default value is MTLS. */ readonly authenticationMode: string; /** * Used authentication mechanism to be provided for the following connection types: * * AZURE_DATA_LAKE_STORAGE, ELASTICSEARCH, KAFKA_SCHEMA_REGISTRY, REDIS, SNOWFLAKE * * JAVA_MESSAGE_SERVICE - If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required. * * DATABRICKS - Required fields by authentication types: * * PERSONAL_ACCESS_TOKEN: username is always 'token', user must enter password * * OAUTH_M2M: user must enter clientId and clientSecret */ readonly authenticationType: string; /** * The endpoint used for authentication with Microsoft Entra ID (formerly Azure Active Directory). Default value: https://login.microsoftonline.com When connecting to a non-public Azure Cloud, the endpoint must be provided, eg: * * Azure China: https://login.chinacloudapi.cn/ * * Azure US Government: https://login.microsoftonline.us/ */ readonly azureAuthorityHost: string; /** * 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 */ readonly azureTenantId: string; /** * 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"` */ readonly bootstrapServers: outputs.GoldenGate.GetConnectionBootstrapServer[]; /** * Represents the catalog of given type used in an Iceberg connection. */ readonly catalogs: outputs.GoldenGate.GetConnectionCatalog[]; /** * * AZURE_DATA_LAKE_STORAGE: 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 * * DATABRICKS: OAuth client id, only applicable for authenticationType == OAUTH_M2M. * * MICROSOFT_FABRIC: Azure client ID of the application. e.g.: 06ecaabf-8b80-4ec8-a0ec-20cbf463703d */ readonly clientId: string; /** * @deprecated The 'client_secret' field has been deprecated. Please use 'client_secret_secret_id' instead. */ readonly clientSecret: string; /** * * AZURE_DATA_LAKE_STORAGE: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. * * DATABRICKS: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Only applicable for authenticationType == OAUTH_M2M. * * MICROSOFT_FABRIC: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. * Note: When provided, 'clientSecret' field must not be provided. */ readonly clientSecretSecretId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Kafka cluster being referenced from Oracle Cloud Infrastructure Streaming with Apache Kafka. */ readonly clusterId: string; /** * The OCID(https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group for the resource. Only applicable for multicloud subscriptions. The cluster placement group id must be provided when a multicloud subscription id is provided. Otherwise the cluster placement group must not be provided. */ readonly clusterPlacementGroupId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced. */ readonly compartmentId: string; /** * The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA' */ readonly connectionFactory: string; readonly connectionId: string; /** * * ORACLE: Connect descriptor or Easy Connect Naming method used to connect to a database. * * MONGODB: MongoDB connection string. e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords' * * AZURE_SYNAPSE_ANALYTICS: JDBC connection string. e.g.: 'jdbc:sqlserver://.sql.azuresynapse.net:1433;database=;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;' */ readonly connectionString: string; /** * The connection type. */ readonly connectionType: string; /** * * 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://.snowflakecomputing.com/?warehouse=&db=' * * AMAZON_REDSHIFT: Connection URL. e.g.: 'jdbc:redshift://aws-redshift-instance.aaaaaaaaaaaa.us-east-2.redshift.amazonaws.com:5439/mydb' * * DATABRICKS: Connection URL. e.g.: 'jdbc:databricks://adb-33934.4.azuredatabricks.net:443/default;transportMode=http;ssl=1;httpPath=sql/protocolv1/o/3393########44/0##3-7-hlrb' * * ORACLE_AI_DATA_PLATFORM: Connection URL. It must start with 'jdbc:spark://' */ readonly connectionUrl: string; /** * The base64 encoded content of the consumer.properties file. */ readonly consumerProperties: string; /** * The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml). It is not included in GET responses if the `view=COMPACT` query parameter is specified. */ readonly coreSiteXml: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database being referenced. */ readonly databaseId: string; /** * The name of the database. */ readonly databaseName: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database system being referenced. */ readonly dbSystemId: string; /** * Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced. */ readonly deploymentId: string; /** * Metadata about this specific object. */ readonly description: string; /** * An object's Display Name. */ readonly displayName: string; /** * Indicates that sensitive attributes are provided via Secrets. */ readonly doesUseSecretIds: boolean; /** * * AMAZON_S3: The endpoint URL of the Amazon S3 storage service. e.g.: 'https://s3.amazonaws.com' * * AZURE_DATA_LAKE_STORAGE: The Azure Blob Storage endpoint where Iceberg data is stored. e.g.: 'https://my-azure-storage-account.blob.core.windows.net' * * GOOGLE_CLOUD_STORAGE: A legal URL to connect to Google Cloud Storage including scheme, server name and port, if not the default port. Default: https://storage.googleapis.com * * OCI_OBJECT_STORAGE_S3_API: Oracle Cloud Infrastructure Object Storage S3 Compatibility API endpoint URL. Format: "https://.compat.objectstorage.." Example: "https://mynamespace.compat.objectstorage.us-ashburn-1.oraclecloud.com" */ readonly endpoint: string; /** * Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c' */ readonly fingerprint: string; /** * A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The name or address of a host. * In case of Generic connection type it represents the Host and port separated by colon. Example: `"server.example.com:1234"` * For multiple hosts, provide a comma separated list. Example: `"server1.example.com:1000,server1.example.com:2000"` */ readonly host: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced. */ readonly id: string; /** * 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. */ readonly ingressIps: outputs.GoldenGate.GetConnectionIngressIp[]; readonly isLockOverride: boolean; /** * The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory' */ readonly jndiConnectionFactory: string; /** * The implementation of javax.naming.spi.InitialContextFactory interface that the client uses to obtain initial naming context. e.g.: 'org.apache.activemq.jndi.ActiveMQInitialContextFactory' */ readonly jndiInitialContextFactory: string; /** * The URL that Java Message Service will use to contact the JNDI provider. e.g.: 'tcp://myjms.host.domain:61616?jms.prefetchPolicy.all=1000' */ readonly jndiProviderUrl: string; /** * @deprecated The 'jndi_security_credentials' field has been deprecated. Please use 'jndi_security_credentials_secret_id' instead. */ readonly jndiSecurityCredentials: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the security credentials are stored associated to the principal. Note: When provided, 'jndiSecurityCredentials' field must not be provided. */ readonly jndiSecurityCredentialsSecretId: string; /** * Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2' */ readonly jndiSecurityPrincipal: string; /** * References the Oracle Cloud Infrastructure Vault key in the Oracle Cloud Infrastructure Vault identified by `vaultId`. */ readonly keyId: string; /** * @deprecated The 'key_store' field has been deprecated. Please use 'key_store_secret_id' instead. */ readonly keyStore: string; /** * @deprecated The 'key_store_password' field has been deprecated. Please use 'key_store_password_secret_id' instead. */ readonly keyStorePassword: string; /** * * JAVA_MESSAGE_SERVICE: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the KeyStore password is stored. * * KAFKA: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the kafka KeyStore password is stored. * * KAFKA_SCHEMA_REGISTRY: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the kafka Ssl KeyStore password is stored. * * REDIS: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Redis KeyStore password is stored. * Note: When provided, 'keyStorePassword' field must not be provided. */ readonly keyStorePasswordSecretId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the KeyStore file is stored. Note: When provided, 'keyStore' field must not be provided. */ readonly keyStoreSecretId: 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. */ readonly lifecycleDetails: string; /** * Locks associated with this resource. */ readonly locks: outputs.GoldenGate.GetConnectionLock[]; /** * Maximum number of input characters supported by this AI model connection. */ readonly maxInputChars: number; /** * AI model identifier. */ readonly modelKey: string; /** * An array of Network Security Group OCIDs used to define network access for either Deployments or Connections. */ readonly nsgIds: string[]; /** * @deprecated The 'password' field has been deprecated. Please use 'password_secret_id' instead. */ readonly password: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored. The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on. Note: When provided, 'password' field must not be provided. */ readonly passwordSecretId: string; /** * The port of an endpoint usually specified for a connection. */ readonly port: number; /** * This property is not available when creating connections. For existing deprecated connections having this value set, the value cannot be updated; set it to empty. */ readonly privateIp: string; /** * @deprecated The 'private_key_file' field has been deprecated. Please use 'private_key_file_secret_id' instead. */ readonly privateKeyFile: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm Note: When provided, 'privateKeyFile' field must not be provided. */ readonly privateKeyFileSecretId: string; /** * @deprecated The 'private_key_passphrase' field has been deprecated. Please use 'private_key_passphrase_secret_id' instead. */ readonly privateKeyPassphrase: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password for the private key file. Note: When provided, 'privateKeyPassphrase' field must not be provided. */ readonly privateKeyPassphraseSecretId: string; /** * The base64 encoded content of the producer.properties file. */ readonly producerProperties: string; /** * AI Provider type used by the AI Model Connection. */ readonly providerType: string; /** * 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 */ readonly publicKeyFingerprint: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Redis cluster. */ readonly redisClusterId: string; /** * The AMAZON region where the S3 bucket is hosted. e.g.: 'us-east-2' */ readonly region: string; /** * Controls the network traffic direction to the target: SHARED_DEPLOYMENT_ENDPOINT: Network traffic flows from the assigned deployment's private endpoint through the deployment's subnet. DEDICATED_ENDPOINT: A dedicated private endpoint is created in the target VCN subnet for the connection. The subnetId is required when DEDICATED_ENDPOINT networking is selected. SHARED_SERVICE_ENDPOINT: Traffic flows through the Goldengate Service's network to public hosts. Cannot be used for private targets. */ readonly routingMethod: string; /** * @deprecated The 'sas_token' field has been deprecated. Please use 'sas_token_secret_id' instead. */ readonly sasToken: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the sas token is stored. Note: When provided, 'sasToken' field must not be provided. */ readonly sasTokenSecretId: string; /** * @deprecated The 'secret_access_key' field has been deprecated. Please use 'secret_access_key_secret_id' instead. */ readonly secretAccessKey: string; /** * * AMAZON_S3: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Secret Access Key is stored. * * OCI_OBJECT_STORAGE_S3_API: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Secret Access Key used for Oracle Cloud Infrastructure Object Storage S3 Compatibility authentication is stored. */ readonly secretAccessKeySecretId: string; /** * Security attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}}` */ readonly securityAttributes: { [key: string]: string; }; /** * * DB2: Security protocol for the DB2 database. * * ELASTICSEARCH: Security protocol for Elasticsearch. * * JAVA_MESSAGE_SERVICE: Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required. * * KAFKA: Security Type for Kafka. * * MICROSOFT_SQLSERVER: Security Type for Microsoft SQL Server. * * MONGODB: Security Type for MongoDB. * * MYSQL: Security Type for MySQL. * * POSTGRESQL: Security protocol for PostgreSQL. * * REDIS: Security protocol for Redis. */ readonly securityProtocol: string; /** * * ELASTICSEARCH: Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `"server1.example.com:4000,server2.example.com:4000"` * * REDIS: Comma separated list of Redis server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 6379. Used for establishing the initial connection to the Redis cluster. Example: `"server1.example.com:6379,server2.example.com:6379"` */ readonly servers: string; /** * @deprecated The 'service_account_key_file' field has been deprecated. Please use 'service_account_key_file_secret_id' instead. */ readonly serviceAccountKeyFile: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the service account key file is stored, which contains the credentials required to use Google Cloud Storage. */ readonly serviceAccountKeyFileSecretId: string; /** * Specifies the session mode for the database connection. Use REDIRECT only for RAC databases with SCAN listeners that return IP addresses. For RAC databases with SCAN listeners that return FQDNs, and for all other Oracle database technologies, use DIRECT. In RAC deployments, SCAN listeners redirects a connection to a specific database node, identified by either IP address or FQDN. It is recommended to configure RAC with FQDN-based SCAN listeners. */ readonly sessionMode: string; /** * If set to true, Java Naming and Directory Interface (JNDI) properties should be provided. */ readonly shouldUseJndi: boolean; /** * * KAFKA: Specifies that the user intends to authenticate to the instance using a resource principal. Applicable only for Oracle Cloud Infrastructure Streaming connections. Only available from 23.9.0.0.0 GoldenGate versions. Note: When specified, 'username'/'password'/'passwordSecretId' fields must not be provided. Default: false * * OCI_OBJECT_STORAGE, ORACLE_AI_DATA_PLATFORM, ORACLE_NOSQL: Specifies that the user intends to authenticate to the instance using a resource principal. Default: false */ readonly shouldUseResourcePrincipal: boolean; /** * If set to true, the driver validates the certificate that is sent by the database server. */ readonly shouldValidateServerCertificate: boolean; /** * * MICROSOFT_SQLSERVER: Database Certificate - The base64 encoded content of a .pem or .crt file containing the server public key (for 1-way SSL). * * MYSQL: Database Certificate - The base64 encoded content of a .pem or .crt file containing the server public key (for 1 and 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified. * * POSTGRESQL: The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt. It is not included in GET responses if the `view=COMPACT` query parameter is specified. */ readonly sslCa: string; /** * * MYSQL: Client Certificate - The base64 encoded content of a .pem or .crt file containing the client public key (for 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified. * * POSTGRESQL: The base64 encoded certificate of the PostgreSQL server. The supported file formats are .pem and .crt. It is not included in GET responses if the `view=COMPACT` query parameter is specified. */ readonly sslCert: string; /** * @deprecated The 'ssl_client_keystash' field has been deprecated. Please use 'ssl_client_keystash_secret_id' instead. */ readonly sslClientKeystash: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. This property is not supported for IBM Db2 for i, as client TLS mode is not available. */ readonly sslClientKeystashSecretId: string; /** * @deprecated The 'ssl_client_keystoredb' field has been deprecated. Please use 'ssl_client_keystoredb_secret_id' instead. */ readonly sslClientKeystoredb: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. This property is not supported for IBM Db2 for i, as client TLS mode is not available. */ readonly sslClientKeystoredbSecretId: string; /** * * MYSQL: The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected. It is not included in GET responses if the `view=COMPACT` query parameter is specified. * * POSTGRESQL: The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). It is not included in GET responses if the `view=COMPACT` query parameter is specified. */ readonly sslCrl: string; /** * @deprecated The 'ssl_key' field has been deprecated. Please use 'ssl_key_secret_id' instead. */ readonly sslKey: string; /** * @deprecated The 'ssl_key_password' field has been deprecated. Please use 'ssl_key_password_secret_id' instead. */ readonly sslKeyPassword: string; /** * * JAVA_MESSAGE_SERVICE, KAFKA_SCHEMA_REGISTRY: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored for the cert inside of the Keystore. In case it differs from the KeyStore password, it should be provided. * * KAFKA: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the kafka Ssl Key password is stored. * Note: When provided, 'sslKeyPassword' field must not be provided. */ readonly sslKeyPasswordSecretId: string; /** * * MYSQL: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key - The content of a .pem or .crt file containing the client private key (for 2-way SSL). * * POSTGRESQL: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the private key of the PostgreSQL server. The supported file formats are .pem and .crt. * Note: When provided, 'sslKey' field must not be provided. */ readonly sslKeySecretId: string; /** * * MYSQL: SSL modes for MySQL. * * POSTGRESQL: SSL modes for PostgreSQL. */ readonly sslMode: string; /** * The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate. It is not included in GET responses if the `view=COMPACT` query parameter is specified. */ readonly sslServerCertificate: string; /** * Possible lifecycle states for connection. */ readonly state: string; /** * Optional. External storage credential name to access files on object storage such as ADLS Gen2, S3 or GCS. */ readonly storageCredentialName: string; /** * Represents the storage of given type used in an Iceberg connection. */ readonly storages: outputs.GoldenGate.GetConnectionStorage[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream pool being referenced. */ readonly streamPoolId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection. */ readonly subnetId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with. */ readonly subscriptionId: string; /** * The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}` */ readonly systemTags: { [key: string]: string; }; /** * The technology type. */ readonly technologyType: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Oracle Cloud Infrastructure tenancy. */ readonly tenancyId: string; /** * Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f */ readonly tenantId: string; /** * The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`. */ readonly timeCreated: string; /** * The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`. */ readonly timeUpdated: string; /** * Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified. */ readonly tlsCaFile: string; /** * @deprecated The 'tls_certificate_key_file' field has been deprecated. Please use 'tls_certificate_key_file_secret_id' instead. */ readonly tlsCertificateKeyFile: string; /** * @deprecated The 'tls_certificate_key_file_password' field has been deprecated. Please use 'tls_certificate_key_file_password_secret_id' instead. */ readonly tlsCertificateKeyFilePassword: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password of the tls certificate key file. Note: When provided, 'tlsCertificateKeyFilePassword' field must not be provided. */ readonly tlsCertificateKeyFilePasswordSecretId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the certificate key file of the mtls connection. * * The content of a .pem file containing the client private key (for 2-way SSL). Note: When provided, 'tlsCertificateKeyFile' field must not be provided. */ readonly tlsCertificateKeyFileSecretId: string; readonly triggerRefresh: boolean; /** * @deprecated The 'trust_store' field has been deprecated. Please use 'trust_store_secret_id' instead. */ readonly trustStore: string; /** * @deprecated The 'trust_store_password' field has been deprecated. Please use 'trust_store_password_secret_id' instead. */ readonly trustStorePassword: string; /** * * JAVA_MESSAGE_SERVICE: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the TrustStore password is stored. * * KAFKA: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the kafka TrustStore password is stored. * * KAFKA_SCHEMA_REGISTRY: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the kafka Ssl TrustStore password is stored. * * REDIS: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Redis TrustStore password is stored. * Note: When provided, 'trustStorePassword' field must not be provided. */ readonly trustStorePasswordSecretId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the TrustStore file is stored. Note: When provided, 'trustStore' field must not be provided. */ readonly trustStoreSecretId: string; /** * Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081' */ readonly url: string; /** * * OCI_OBJECT_STORAGE, ORACLE_AI_DATA_PLATFORM: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure user who will access Object Storage. The user must have write access to the bucket they want to connect to. If the user is not provided, backend will default to the user who is calling the API endpoint. * * ORACLE_NOSQL: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database. The user must have write access to the table they want to connect to. If the user is not provided, backend will default to the user who is calling the API endpoint. */ readonly userId: string; /** * The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it. */ readonly username: string; /** * References the Oracle Cloud Infrastructure Vault that contains the customer-managed encryption key identified by `keyId`. */ readonly vaultId: string; /** * @deprecated The 'wallet' field has been deprecated. Please use 'wallet_secret_id' instead. */ readonly wallet: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the wallet file is stored. The wallet contents Oracle GoldenGate uses to make connections to a database. Note: When provided, 'wallet' field must not be provided. */ readonly walletSecretId: string; } /** * This data source provides details about a specific Connection resource in Oracle Cloud Infrastructure Golden Gate service. * * Retrieves a Connection. * * ## Example Usage */ export declare function getConnectionOutput(args: GetConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getConnection. */ export interface GetConnectionOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Connection. */ connectionId: pulumi.Input; } //# sourceMappingURL=getConnection.d.ts.map