airbyte.DestinationOracle
Explore with Pulumi AI
DestinationOracle Resource
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.airbyte.DestinationOracle;
import com.pulumi.airbyte.DestinationOracleArgs;
import com.pulumi.airbyte.inputs.DestinationOracleConfigurationArgs;
import com.pulumi.airbyte.inputs.DestinationOracleConfigurationEncryptionArgs;
import com.pulumi.airbyte.inputs.DestinationOracleConfigurationEncryptionNativeNetworkEncryptionNneArgs;
import com.pulumi.airbyte.inputs.DestinationOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs;
import com.pulumi.airbyte.inputs.DestinationOracleConfigurationEncryptionUnencryptedArgs;
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 myDestinationOracle = new DestinationOracle("myDestinationOracle", DestinationOracleArgs.builder()
.configuration(DestinationOracleConfigurationArgs.builder()
.encryption(DestinationOracleConfigurationEncryptionArgs.builder()
.nativeNetworkEncryptionNne(DestinationOracleConfigurationEncryptionNativeNetworkEncryptionNneArgs.builder()
.encryptionAlgorithm("RC4_56")
.build())
.tlsEncryptedVerifyCertificate(DestinationOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs.builder()
.sslCertificate("...my_ssl_certificate...")
.build())
.unencrypted()
.build())
.host("...my_host...")
.jdbc_url_params("...my_jdbc_url_params...")
.password("...my_password...")
.port(1521)
.raw_data_schema("...my_raw_data_schema...")
.schema("airbyte")
.sid("...my_sid...")
.tunnel_method(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.username("...my_username...")
.build())
.definitionId("28ddc2bd-35a7-4a51-966c-b9e88351add3")
.workspaceId("6900342e-4f38-4480-a5e0-1dce84f57ee6")
.build());
}
}
resources:
myDestinationOracle:
type: airbyte:DestinationOracle
properties:
configuration:
encryption:
nativeNetworkEncryptionNne:
encryptionAlgorithm: RC4_56
tlsEncryptedVerifyCertificate:
sslCertificate: '...my_ssl_certificate...'
unencrypted: {}
host: '...my_host...'
jdbc_url_params: '...my_jdbc_url_params...'
password: '...my_password...'
port: 1521
raw_data_schema: '...my_raw_data_schema...'
schema: airbyte
sid: '...my_sid...'
tunnel_method:
noTunnel: {}
passwordAuthentication:
tunnelHost: '...my_tunnel_host...'
tunnelPort: 22
tunnelUser: '...my_tunnel_user...'
tunnelUserPassword: '...my_tunnel_user_password...'
sshKeyAuthentication:
sshKey: '...my_ssh_key...'
tunnelHost: '...my_tunnel_host...'
tunnelPort: 22
tunnelUser: '...my_tunnel_user...'
username: '...my_username...'
definitionId: 28ddc2bd-35a7-4a51-966c-b9e88351add3
workspaceId: 6900342e-4f38-4480-a5e0-1dce84f57ee6
Create DestinationOracle Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DestinationOracle(name: string, args: DestinationOracleArgs, opts?: CustomResourceOptions);
@overload
def DestinationOracle(resource_name: str,
args: DestinationOracleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DestinationOracle(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[DestinationOracleConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None)
func NewDestinationOracle(ctx *Context, name string, args DestinationOracleArgs, opts ...ResourceOption) (*DestinationOracle, error)
public DestinationOracle(string name, DestinationOracleArgs args, CustomResourceOptions? opts = null)
public DestinationOracle(String name, DestinationOracleArgs args)
public DestinationOracle(String name, DestinationOracleArgs args, CustomResourceOptions options)
type: airbyte:DestinationOracle
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DestinationOracleArgs
- 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 DestinationOracleArgs
- 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 DestinationOracleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DestinationOracleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DestinationOracleArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var destinationOracleResource = new Airbyte.DestinationOracle("destinationOracleResource", new()
{
Configuration = new Airbyte.Inputs.DestinationOracleConfigurationArgs
{
Host = "string",
Sid = "string",
Username = "string",
Encryption = new Airbyte.Inputs.DestinationOracleConfigurationEncryptionArgs
{
NativeNetworkEncryptionNne = new Airbyte.Inputs.DestinationOracleConfigurationEncryptionNativeNetworkEncryptionNneArgs
{
EncryptionAlgorithm = "string",
},
TlsEncryptedVerifyCertificate = new Airbyte.Inputs.DestinationOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs
{
SslCertificate = "string",
},
Unencrypted = null,
},
JdbcUrlParams = "string",
Password = "string",
Port = 0,
RawDataSchema = "string",
Schema = "string",
TunnelMethod = new Airbyte.Inputs.DestinationOracleConfigurationTunnelMethodArgs
{
NoTunnel = null,
PasswordAuthentication = new Airbyte.Inputs.DestinationOracleConfigurationTunnelMethodPasswordAuthenticationArgs
{
TunnelHost = "string",
TunnelUser = "string",
TunnelUserPassword = "string",
TunnelPort = 0,
},
SshKeyAuthentication = new Airbyte.Inputs.DestinationOracleConfigurationTunnelMethodSshKeyAuthenticationArgs
{
SshKey = "string",
TunnelHost = "string",
TunnelUser = "string",
TunnelPort = 0,
},
},
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
});
example, err := airbyte.NewDestinationOracle(ctx, "destinationOracleResource", &airbyte.DestinationOracleArgs{
Configuration: &.DestinationOracleConfigurationArgs{
Host: pulumi.String("string"),
Sid: pulumi.String("string"),
Username: pulumi.String("string"),
Encryption: &.DestinationOracleConfigurationEncryptionArgs{
NativeNetworkEncryptionNne: &.DestinationOracleConfigurationEncryptionNativeNetworkEncryptionNneArgs{
EncryptionAlgorithm: pulumi.String("string"),
},
TlsEncryptedVerifyCertificate: &.DestinationOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs{
SslCertificate: pulumi.String("string"),
},
Unencrypted: &.DestinationOracleConfigurationEncryptionUnencryptedArgs{
},
},
JdbcUrlParams: pulumi.String("string"),
Password: pulumi.String("string"),
Port: pulumi.Float64(0),
RawDataSchema: pulumi.String("string"),
Schema: pulumi.String("string"),
TunnelMethod: &.DestinationOracleConfigurationTunnelMethodArgs{
NoTunnel: &.DestinationOracleConfigurationTunnelMethodNoTunnelArgs{
},
PasswordAuthentication: &.DestinationOracleConfigurationTunnelMethodPasswordAuthenticationArgs{
TunnelHost: pulumi.String("string"),
TunnelUser: pulumi.String("string"),
TunnelUserPassword: pulumi.String("string"),
TunnelPort: pulumi.Float64(0),
},
SshKeyAuthentication: &.DestinationOracleConfigurationTunnelMethodSshKeyAuthenticationArgs{
SshKey: pulumi.String("string"),
TunnelHost: pulumi.String("string"),
TunnelUser: pulumi.String("string"),
TunnelPort: pulumi.Float64(0),
},
},
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
})
var destinationOracleResource = new DestinationOracle("destinationOracleResource", DestinationOracleArgs.builder()
.configuration(DestinationOracleConfigurationArgs.builder()
.host("string")
.sid("string")
.username("string")
.encryption(DestinationOracleConfigurationEncryptionArgs.builder()
.nativeNetworkEncryptionNne(DestinationOracleConfigurationEncryptionNativeNetworkEncryptionNneArgs.builder()
.encryptionAlgorithm("string")
.build())
.tlsEncryptedVerifyCertificate(DestinationOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs.builder()
.sslCertificate("string")
.build())
.unencrypted()
.build())
.jdbcUrlParams("string")
.password("string")
.port(0)
.rawDataSchema("string")
.schema("string")
.tunnelMethod(DestinationOracleConfigurationTunnelMethodArgs.builder()
.noTunnel()
.passwordAuthentication(DestinationOracleConfigurationTunnelMethodPasswordAuthenticationArgs.builder()
.tunnelHost("string")
.tunnelUser("string")
.tunnelUserPassword("string")
.tunnelPort(0)
.build())
.sshKeyAuthentication(DestinationOracleConfigurationTunnelMethodSshKeyAuthenticationArgs.builder()
.sshKey("string")
.tunnelHost("string")
.tunnelUser("string")
.tunnelPort(0)
.build())
.build())
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.build());
destination_oracle_resource = airbyte.DestinationOracle("destinationOracleResource",
configuration={
"host": "string",
"sid": "string",
"username": "string",
"encryption": {
"native_network_encryption_nne": {
"encryption_algorithm": "string",
},
"tls_encrypted_verify_certificate": {
"ssl_certificate": "string",
},
"unencrypted": {},
},
"jdbc_url_params": "string",
"password": "string",
"port": 0,
"raw_data_schema": "string",
"schema": "string",
"tunnel_method": {
"no_tunnel": {},
"password_authentication": {
"tunnel_host": "string",
"tunnel_user": "string",
"tunnel_user_password": "string",
"tunnel_port": 0,
},
"ssh_key_authentication": {
"ssh_key": "string",
"tunnel_host": "string",
"tunnel_user": "string",
"tunnel_port": 0,
},
},
},
workspace_id="string",
definition_id="string",
name="string")
const destinationOracleResource = new airbyte.DestinationOracle("destinationOracleResource", {
configuration: {
host: "string",
sid: "string",
username: "string",
encryption: {
nativeNetworkEncryptionNne: {
encryptionAlgorithm: "string",
},
tlsEncryptedVerifyCertificate: {
sslCertificate: "string",
},
unencrypted: {},
},
jdbcUrlParams: "string",
password: "string",
port: 0,
rawDataSchema: "string",
schema: "string",
tunnelMethod: {
noTunnel: {},
passwordAuthentication: {
tunnelHost: "string",
tunnelUser: "string",
tunnelUserPassword: "string",
tunnelPort: 0,
},
sshKeyAuthentication: {
sshKey: "string",
tunnelHost: "string",
tunnelUser: "string",
tunnelPort: 0,
},
},
},
workspaceId: "string",
definitionId: "string",
name: "string",
});
type: airbyte:DestinationOracle
properties:
configuration:
encryption:
nativeNetworkEncryptionNne:
encryptionAlgorithm: string
tlsEncryptedVerifyCertificate:
sslCertificate: string
unencrypted: {}
host: string
jdbcUrlParams: string
password: string
port: 0
rawDataSchema: string
schema: string
sid: string
tunnelMethod:
noTunnel: {}
passwordAuthentication:
tunnelHost: string
tunnelPort: 0
tunnelUser: string
tunnelUserPassword: string
sshKeyAuthentication:
sshKey: string
tunnelHost: string
tunnelPort: 0
tunnelUser: string
username: string
definitionId: string
name: string
workspaceId: string
DestinationOracle Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DestinationOracle resource accepts the following input properties:
- Configuration
Destination
Oracle Configuration - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the destination e.g. dev-mysql-instance.
- Configuration
Destination
Oracle Configuration Args - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the destination e.g. dev-mysql-instance.
- configuration
Destination
Oracle Configuration - workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the destination e.g. dev-mysql-instance.
- configuration
Destination
Oracle Configuration - workspace
Id string - definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the destination e.g. dev-mysql-instance.
- configuration
Destination
Oracle Configuration Args - workspace_
id str - definition_
id str - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the destination e.g. dev-mysql-instance.
- configuration Property Map
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the destination e.g. dev-mysql-instance.
Outputs
All input properties are implicitly available as output properties. Additionally, the DestinationOracle resource produces the following output properties:
- Created
At double - Destination
Id string - Destination
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- Created
At float64 - Destination
Id string - Destination
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- created
At Double - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
- created
At number - destination
Id string - destination
Type string - id string
- The provider-assigned unique ID for this managed resource.
- created_
at float - destination_
id str - destination_
type str - id str
- The provider-assigned unique ID for this managed resource.
- created
At Number - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
Look up Existing DestinationOracle Resource
Get an existing DestinationOracle 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?: DestinationOracleState, opts?: CustomResourceOptions): DestinationOracle
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[DestinationOracleConfigurationArgs] = None,
created_at: Optional[float] = None,
definition_id: Optional[str] = None,
destination_id: Optional[str] = None,
destination_type: Optional[str] = None,
name: Optional[str] = None,
workspace_id: Optional[str] = None) -> DestinationOracle
func GetDestinationOracle(ctx *Context, name string, id IDInput, state *DestinationOracleState, opts ...ResourceOption) (*DestinationOracle, error)
public static DestinationOracle Get(string name, Input<string> id, DestinationOracleState? state, CustomResourceOptions? opts = null)
public static DestinationOracle get(String name, Output<String> id, DestinationOracleState state, CustomResourceOptions options)
resources: _: type: airbyte:DestinationOracle get: id: ${id}
- 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.
- Configuration
Destination
Oracle Configuration - Created
At double - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- Destination
Id string - Destination
Type string - Name string
- Name of the destination e.g. dev-mysql-instance.
- Workspace
Id string
- Configuration
Destination
Oracle Configuration Args - Created
At float64 - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- Destination
Id string - Destination
Type string - Name string
- Name of the destination e.g. dev-mysql-instance.
- Workspace
Id string
- configuration
Destination
Oracle Configuration - created
At Double - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id String - destination
Type String - name String
- Name of the destination e.g. dev-mysql-instance.
- workspace
Id String
- configuration
Destination
Oracle Configuration - created
At number - definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id string - destination
Type string - name string
- Name of the destination e.g. dev-mysql-instance.
- workspace
Id string
- configuration
Destination
Oracle Configuration Args - created_
at float - definition_
id str - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination_
id str - destination_
type str - name str
- Name of the destination e.g. dev-mysql-instance.
- workspace_
id str
- configuration Property Map
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id String - destination
Type String - name String
- Name of the destination e.g. dev-mysql-instance.
- workspace
Id String
Supporting Types
DestinationOracleConfiguration, DestinationOracleConfigurationArgs
- Host string
- The hostname of the database.
- Sid string
- The System Identifier uniquely distinguishes the instance from any other instance on the same computer.
- Username string
- The username to access the database. This user must have CREATE USER privileges in the database.
- Encryption
Destination
Oracle Configuration Encryption - The encryption method which is used when communicating with the database.
- Jdbc
Url stringParams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- Password string
- The password associated with the username.
- Port double
- The port of the database. Default: 1521
- Raw
Data stringSchema - The schema to write raw tables into (default: airbyte_internal)
- Schema string
- The default schema is used as the target schema for all statements issued from the connection that do not explicitly specify a schema name. The usual value for this field is "airbyte". In Oracle, schemas and users are the same thing, so the "user" parameter is used as the login credentials and this is used for the default Airbyte message schema. Default: "airbyte"
- Tunnel
Method DestinationOracle Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- Host string
- The hostname of the database.
- Sid string
- The System Identifier uniquely distinguishes the instance from any other instance on the same computer.
- Username string
- The username to access the database. This user must have CREATE USER privileges in the database.
- Encryption
Destination
Oracle Configuration Encryption - The encryption method which is used when communicating with the database.
- Jdbc
Url stringParams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- Password string
- The password associated with the username.
- Port float64
- The port of the database. Default: 1521
- Raw
Data stringSchema - The schema to write raw tables into (default: airbyte_internal)
- Schema string
- The default schema is used as the target schema for all statements issued from the connection that do not explicitly specify a schema name. The usual value for this field is "airbyte". In Oracle, schemas and users are the same thing, so the "user" parameter is used as the login credentials and this is used for the default Airbyte message schema. Default: "airbyte"
- Tunnel
Method DestinationOracle Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- host String
- The hostname of the database.
- sid String
- The System Identifier uniquely distinguishes the instance from any other instance on the same computer.
- username String
- The username to access the database. This user must have CREATE USER privileges in the database.
- encryption
Destination
Oracle Configuration Encryption - The encryption method which is used when communicating with the database.
- jdbc
Url StringParams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- password String
- The password associated with the username.
- port Double
- The port of the database. Default: 1521
- raw
Data StringSchema - The schema to write raw tables into (default: airbyte_internal)
- schema String
- The default schema is used as the target schema for all statements issued from the connection that do not explicitly specify a schema name. The usual value for this field is "airbyte". In Oracle, schemas and users are the same thing, so the "user" parameter is used as the login credentials and this is used for the default Airbyte message schema. Default: "airbyte"
- tunnel
Method DestinationOracle Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- host string
- The hostname of the database.
- sid string
- The System Identifier uniquely distinguishes the instance from any other instance on the same computer.
- username string
- The username to access the database. This user must have CREATE USER privileges in the database.
- encryption
Destination
Oracle Configuration Encryption - The encryption method which is used when communicating with the database.
- jdbc
Url stringParams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- password string
- The password associated with the username.
- port number
- The port of the database. Default: 1521
- raw
Data stringSchema - The schema to write raw tables into (default: airbyte_internal)
- schema string
- The default schema is used as the target schema for all statements issued from the connection that do not explicitly specify a schema name. The usual value for this field is "airbyte". In Oracle, schemas and users are the same thing, so the "user" parameter is used as the login credentials and this is used for the default Airbyte message schema. Default: "airbyte"
- tunnel
Method DestinationOracle Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- host str
- The hostname of the database.
- sid str
- The System Identifier uniquely distinguishes the instance from any other instance on the same computer.
- username str
- The username to access the database. This user must have CREATE USER privileges in the database.
- encryption
Destination
Oracle Configuration Encryption - The encryption method which is used when communicating with the database.
- jdbc_
url_ strparams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- password str
- The password associated with the username.
- port float
- The port of the database. Default: 1521
- raw_
data_ strschema - The schema to write raw tables into (default: airbyte_internal)
- schema str
- The default schema is used as the target schema for all statements issued from the connection that do not explicitly specify a schema name. The usual value for this field is "airbyte". In Oracle, schemas and users are the same thing, so the "user" parameter is used as the login credentials and this is used for the default Airbyte message schema. Default: "airbyte"
- tunnel_
method DestinationOracle Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- host String
- The hostname of the database.
- sid String
- The System Identifier uniquely distinguishes the instance from any other instance on the same computer.
- username String
- The username to access the database. This user must have CREATE USER privileges in the database.
- encryption Property Map
- The encryption method which is used when communicating with the database.
- jdbc
Url StringParams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- password String
- The password associated with the username.
- port Number
- The port of the database. Default: 1521
- raw
Data StringSchema - The schema to write raw tables into (default: airbyte_internal)
- schema String
- The default schema is used as the target schema for all statements issued from the connection that do not explicitly specify a schema name. The usual value for this field is "airbyte". In Oracle, schemas and users are the same thing, so the "user" parameter is used as the login credentials and this is used for the default Airbyte message schema. Default: "airbyte"
- tunnel
Method Property Map - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
DestinationOracleConfigurationEncryption, DestinationOracleConfigurationEncryptionArgs
- Native
Network DestinationEncryption Nne Oracle Configuration Encryption Native Network Encryption Nne - The native network encryption gives you the ability to encrypt database connections, without the configuration overhead of TCP/IP and SSL/TLS and without the need to open and listen on different ports.
- Tls
Encrypted DestinationVerify Certificate Oracle Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- Unencrypted
Destination
Oracle Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- Native
Network DestinationEncryption Nne Oracle Configuration Encryption Native Network Encryption Nne - The native network encryption gives you the ability to encrypt database connections, without the configuration overhead of TCP/IP and SSL/TLS and without the need to open and listen on different ports.
- Tls
Encrypted DestinationVerify Certificate Oracle Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- Unencrypted
Destination
Oracle Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- native
Network DestinationEncryption Nne Oracle Configuration Encryption Native Network Encryption Nne - The native network encryption gives you the ability to encrypt database connections, without the configuration overhead of TCP/IP and SSL/TLS and without the need to open and listen on different ports.
- tls
Encrypted DestinationVerify Certificate Oracle Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- unencrypted
Destination
Oracle Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- native
Network DestinationEncryption Nne Oracle Configuration Encryption Native Network Encryption Nne - The native network encryption gives you the ability to encrypt database connections, without the configuration overhead of TCP/IP and SSL/TLS and without the need to open and listen on different ports.
- tls
Encrypted DestinationVerify Certificate Oracle Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- unencrypted
Destination
Oracle Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- native_
network_ Destinationencryption_ nne Oracle Configuration Encryption Native Network Encryption Nne - The native network encryption gives you the ability to encrypt database connections, without the configuration overhead of TCP/IP and SSL/TLS and without the need to open and listen on different ports.
- tls_
encrypted_ Destinationverify_ certificate Oracle Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- unencrypted
Destination
Oracle Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- native
Network Property MapEncryption Nne - The native network encryption gives you the ability to encrypt database connections, without the configuration overhead of TCP/IP and SSL/TLS and without the need to open and listen on different ports.
- tls
Encrypted Property MapVerify Certificate - Verify and use the certificate provided by the server.
- unencrypted Property Map
- Data transfer will not be encrypted.
DestinationOracleConfigurationEncryptionNativeNetworkEncryptionNne, DestinationOracleConfigurationEncryptionNativeNetworkEncryptionNneArgs
- Encryption
Algorithm string - This parameter defines the database encryption algorithm. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
- Encryption
Algorithm string - This parameter defines the database encryption algorithm. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
- encryption
Algorithm String - This parameter defines the database encryption algorithm. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
- encryption
Algorithm string - This parameter defines the database encryption algorithm. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
- encryption_
algorithm str - This parameter defines the database encryption algorithm. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
- encryption
Algorithm String - This parameter defines the database encryption algorithm. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
DestinationOracleConfigurationEncryptionTlsEncryptedVerifyCertificate, DestinationOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs
- Ssl
Certificate string - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
- Ssl
Certificate string - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
- ssl
Certificate String - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
- ssl
Certificate string - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
- ssl_
certificate str - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
- ssl
Certificate String - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
DestinationOracleConfigurationTunnelMethod, DestinationOracleConfigurationTunnelMethodArgs
DestinationOracleConfigurationTunnelMethodPasswordAuthentication, DestinationOracleConfigurationTunnelMethodPasswordAuthenticationArgs
- Tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- Tunnel
User string - OS-level username for logging into the jump server host
- Tunnel
User stringPassword - OS-level password for logging into the jump server host
- Tunnel
Port double - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- Tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- Tunnel
User string - OS-level username for logging into the jump server host
- Tunnel
User stringPassword - OS-level password for logging into the jump server host
- Tunnel
Port float64 - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- tunnel
Host String - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User String - OS-level username for logging into the jump server host
- tunnel
User StringPassword - OS-level password for logging into the jump server host
- tunnel
Port Double - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User string - OS-level username for logging into the jump server host
- tunnel
User stringPassword - OS-level password for logging into the jump server host
- tunnel
Port number - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- tunnel_
host str - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel_
user str - OS-level username for logging into the jump server host
- tunnel_
user_ strpassword - OS-level password for logging into the jump server host
- tunnel_
port float - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- tunnel
Host String - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User String - OS-level username for logging into the jump server host
- tunnel
User StringPassword - OS-level password for logging into the jump server host
- tunnel
Port Number - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
DestinationOracleConfigurationTunnelMethodSshKeyAuthentication, DestinationOracleConfigurationTunnelMethodSshKeyAuthenticationArgs
- Ssh
Key string - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- Tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- Tunnel
User string - OS-level username for logging into the jump server host.
- Tunnel
Port double - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- Ssh
Key string - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- Tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- Tunnel
User string - OS-level username for logging into the jump server host.
- Tunnel
Port float64 - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- ssh
Key String - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- tunnel
Host String - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User String - OS-level username for logging into the jump server host.
- tunnel
Port Double - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- ssh
Key string - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User string - OS-level username for logging into the jump server host.
- tunnel
Port number - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- ssh_
key str - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- tunnel_
host str - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel_
user str - OS-level username for logging into the jump server host.
- tunnel_
port float - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- ssh
Key String - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- tunnel
Host String - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User String - OS-level username for logging into the jump server host.
- tunnel
Port Number - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
Import
$ pulumi import airbyte:index/destinationOracle:DestinationOracle my_airbyte_destination_oracle ""
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- airbyte airbytehq/terraform-provider-airbyte
- License
- Notes
- This Pulumi package is based on the
airbyte
Terraform Provider.