airbyte.SourceOracle
Explore with Pulumi AI
SourceOracle 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.SourceOracle;
import com.pulumi.airbyte.SourceOracleArgs;
import com.pulumi.airbyte.inputs.SourceOracleConfigurationArgs;
import com.pulumi.airbyte.inputs.SourceOracleConfigurationEncryptionArgs;
import com.pulumi.airbyte.inputs.SourceOracleConfigurationEncryptionNativeNetworkEncryptionNneArgs;
import com.pulumi.airbyte.inputs.SourceOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs;
import com.pulumi.airbyte.inputs.SourceOracleConfigurationEncryptionUnencryptedArgs;
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 mySourceOracle = new SourceOracle("mySourceOracle", SourceOracleArgs.builder()
.configuration(SourceOracleConfigurationArgs.builder()
.connection_data(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.encryption(SourceOracleConfigurationEncryptionArgs.builder()
.nativeNetworkEncryptionNne(SourceOracleConfigurationEncryptionNativeNetworkEncryptionNneArgs.builder()
.encryptionAlgorithm("3DES168")
.build())
.tlsEncryptedVerifyCertificate(SourceOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs.builder()
.sslCertificate("...my_ssl_certificate...")
.build())
.unencrypted()
.build())
.host("...my_host...")
.jdbc_url_params("...my_jdbc_url_params...")
.password("...my_password...")
.port(22568)
.schemas("...")
.tunnel_method(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.username("...my_username...")
.build())
.definitionId("19b6db41-3eb9-40e4-9d70-9711de027975")
.secretId("...my_secret_id...")
.workspaceId("a4ecddd5-3505-44b1-8fbf-25c1225b2856")
.build());
}
}
resources:
mySourceOracle:
type: airbyte:SourceOracle
properties:
configuration:
connection_data:
serviceName:
serviceName: '...my_service_name...'
systemIdsid:
sid: '...my_sid...'
encryption:
nativeNetworkEncryptionNne:
encryptionAlgorithm: 3DES168
tlsEncryptedVerifyCertificate:
sslCertificate: '...my_ssl_certificate...'
unencrypted: {}
host: '...my_host...'
jdbc_url_params: '...my_jdbc_url_params...'
password: '...my_password...'
port: 22568
schemas:
- '...'
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: 19b6db41-3eb9-40e4-9d70-9711de027975
secretId: '...my_secret_id...'
workspaceId: a4ecddd5-3505-44b1-8fbf-25c1225b2856
Create SourceOracle Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceOracle(name: string, args: SourceOracleArgs, opts?: CustomResourceOptions);
@overload
def SourceOracle(resource_name: str,
args: SourceOracleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SourceOracle(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceOracleConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None)
func NewSourceOracle(ctx *Context, name string, args SourceOracleArgs, opts ...ResourceOption) (*SourceOracle, error)
public SourceOracle(string name, SourceOracleArgs args, CustomResourceOptions? opts = null)
public SourceOracle(String name, SourceOracleArgs args)
public SourceOracle(String name, SourceOracleArgs args, CustomResourceOptions options)
type: airbyte:SourceOracle
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 SourceOracleArgs
- 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 SourceOracleArgs
- 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 SourceOracleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceOracleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceOracleArgs
- 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 sourceOracleResource = new Airbyte.SourceOracle("sourceOracleResource", new()
{
Configuration = new Airbyte.Inputs.SourceOracleConfigurationArgs
{
Host = "string",
Username = "string",
ConnectionData = new Airbyte.Inputs.SourceOracleConfigurationConnectionDataArgs
{
ServiceName = new Airbyte.Inputs.SourceOracleConfigurationConnectionDataServiceNameArgs
{
ServiceName = "string",
},
SystemIdsid = new Airbyte.Inputs.SourceOracleConfigurationConnectionDataSystemIdsidArgs
{
Sid = "string",
},
},
Encryption = new Airbyte.Inputs.SourceOracleConfigurationEncryptionArgs
{
NativeNetworkEncryptionNne = new Airbyte.Inputs.SourceOracleConfigurationEncryptionNativeNetworkEncryptionNneArgs
{
EncryptionAlgorithm = "string",
},
TlsEncryptedVerifyCertificate = new Airbyte.Inputs.SourceOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs
{
SslCertificate = "string",
},
Unencrypted = null,
},
JdbcUrlParams = "string",
Password = "string",
Port = 0,
Schemas = new[]
{
"string",
},
TunnelMethod = new Airbyte.Inputs.SourceOracleConfigurationTunnelMethodArgs
{
NoTunnel = null,
PasswordAuthentication = new Airbyte.Inputs.SourceOracleConfigurationTunnelMethodPasswordAuthenticationArgs
{
TunnelHost = "string",
TunnelUser = "string",
TunnelUserPassword = "string",
TunnelPort = 0,
},
SshKeyAuthentication = new Airbyte.Inputs.SourceOracleConfigurationTunnelMethodSshKeyAuthenticationArgs
{
SshKey = "string",
TunnelHost = "string",
TunnelUser = "string",
TunnelPort = 0,
},
},
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
SecretId = "string",
});
example, err := airbyte.NewSourceOracle(ctx, "sourceOracleResource", &airbyte.SourceOracleArgs{
Configuration: &.SourceOracleConfigurationArgs{
Host: pulumi.String("string"),
Username: pulumi.String("string"),
ConnectionData: &.SourceOracleConfigurationConnectionDataArgs{
ServiceName: &.SourceOracleConfigurationConnectionDataServiceNameArgs{
ServiceName: pulumi.String("string"),
},
SystemIdsid: &.SourceOracleConfigurationConnectionDataSystemIdsidArgs{
Sid: pulumi.String("string"),
},
},
Encryption: &.SourceOracleConfigurationEncryptionArgs{
NativeNetworkEncryptionNne: &.SourceOracleConfigurationEncryptionNativeNetworkEncryptionNneArgs{
EncryptionAlgorithm: pulumi.String("string"),
},
TlsEncryptedVerifyCertificate: &.SourceOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs{
SslCertificate: pulumi.String("string"),
},
Unencrypted: &.SourceOracleConfigurationEncryptionUnencryptedArgs{
},
},
JdbcUrlParams: pulumi.String("string"),
Password: pulumi.String("string"),
Port: pulumi.Float64(0),
Schemas: pulumi.StringArray{
pulumi.String("string"),
},
TunnelMethod: &.SourceOracleConfigurationTunnelMethodArgs{
NoTunnel: &.SourceOracleConfigurationTunnelMethodNoTunnelArgs{
},
PasswordAuthentication: &.SourceOracleConfigurationTunnelMethodPasswordAuthenticationArgs{
TunnelHost: pulumi.String("string"),
TunnelUser: pulumi.String("string"),
TunnelUserPassword: pulumi.String("string"),
TunnelPort: pulumi.Float64(0),
},
SshKeyAuthentication: &.SourceOracleConfigurationTunnelMethodSshKeyAuthenticationArgs{
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"),
SecretId: pulumi.String("string"),
})
var sourceOracleResource = new SourceOracle("sourceOracleResource", SourceOracleArgs.builder()
.configuration(SourceOracleConfigurationArgs.builder()
.host("string")
.username("string")
.connectionData(SourceOracleConfigurationConnectionDataArgs.builder()
.serviceName(SourceOracleConfigurationConnectionDataServiceNameArgs.builder()
.serviceName("string")
.build())
.systemIdsid(SourceOracleConfigurationConnectionDataSystemIdsidArgs.builder()
.sid("string")
.build())
.build())
.encryption(SourceOracleConfigurationEncryptionArgs.builder()
.nativeNetworkEncryptionNne(SourceOracleConfigurationEncryptionNativeNetworkEncryptionNneArgs.builder()
.encryptionAlgorithm("string")
.build())
.tlsEncryptedVerifyCertificate(SourceOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs.builder()
.sslCertificate("string")
.build())
.unencrypted()
.build())
.jdbcUrlParams("string")
.password("string")
.port(0)
.schemas("string")
.tunnelMethod(SourceOracleConfigurationTunnelMethodArgs.builder()
.noTunnel()
.passwordAuthentication(SourceOracleConfigurationTunnelMethodPasswordAuthenticationArgs.builder()
.tunnelHost("string")
.tunnelUser("string")
.tunnelUserPassword("string")
.tunnelPort(0)
.build())
.sshKeyAuthentication(SourceOracleConfigurationTunnelMethodSshKeyAuthenticationArgs.builder()
.sshKey("string")
.tunnelHost("string")
.tunnelUser("string")
.tunnelPort(0)
.build())
.build())
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.secretId("string")
.build());
source_oracle_resource = airbyte.SourceOracle("sourceOracleResource",
configuration={
"host": "string",
"username": "string",
"connection_data": {
"service_name": {
"service_name": "string",
},
"system_idsid": {
"sid": "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,
"schemas": ["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",
secret_id="string")
const sourceOracleResource = new airbyte.SourceOracle("sourceOracleResource", {
configuration: {
host: "string",
username: "string",
connectionData: {
serviceName: {
serviceName: "string",
},
systemIdsid: {
sid: "string",
},
},
encryption: {
nativeNetworkEncryptionNne: {
encryptionAlgorithm: "string",
},
tlsEncryptedVerifyCertificate: {
sslCertificate: "string",
},
unencrypted: {},
},
jdbcUrlParams: "string",
password: "string",
port: 0,
schemas: ["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",
secretId: "string",
});
type: airbyte:SourceOracle
properties:
configuration:
connectionData:
serviceName:
serviceName: string
systemIdsid:
sid: string
encryption:
nativeNetworkEncryptionNne:
encryptionAlgorithm: string
tlsEncryptedVerifyCertificate:
sslCertificate: string
unencrypted: {}
host: string
jdbcUrlParams: string
password: string
port: 0
schemas:
- 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
secretId: string
workspaceId: string
SourceOracle 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 SourceOracle resource accepts the following input properties:
- Configuration
Source
Oracle Configuration - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Configuration
Source
Oracle Configuration Args - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Oracle Configuration - workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Oracle Configuration - workspace
Id string - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Oracle Configuration Args - workspace_
id str - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- secret_
id str - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration Property Map
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the SourceOracle resource produces the following output properties:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Source
Id string - Source
Type string
- Created
At float64 - Id string
- The provider-assigned unique ID for this managed resource.
- Source
Id string - Source
Type string
- created
At Double - id String
- The provider-assigned unique ID for this managed resource.
- source
Id String - source
Type String
- created
At number - id string
- The provider-assigned unique ID for this managed resource.
- source
Id string - source
Type string
- created_
at float - id str
- The provider-assigned unique ID for this managed resource.
- source_
id str - source_
type str
- created
At Number - id String
- The provider-assigned unique ID for this managed resource.
- source
Id String - source
Type String
Look up Existing SourceOracle Resource
Get an existing SourceOracle 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?: SourceOracleState, opts?: CustomResourceOptions): SourceOracle
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceOracleConfigurationArgs] = None,
created_at: Optional[float] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None,
source_id: Optional[str] = None,
source_type: Optional[str] = None,
workspace_id: Optional[str] = None) -> SourceOracle
func GetSourceOracle(ctx *Context, name string, id IDInput, state *SourceOracleState, opts ...ResourceOption) (*SourceOracle, error)
public static SourceOracle Get(string name, Input<string> id, SourceOracleState? state, CustomResourceOptions? opts = null)
public static SourceOracle get(String name, Output<String> id, SourceOracleState state, CustomResourceOptions options)
resources: _: type: airbyte:SourceOracle 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
Source
Oracle Configuration - Created
At double - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- Configuration
Source
Oracle Configuration Args - Created
At float64 - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- configuration
Source
Oracle Configuration - created
At Double - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
- configuration
Source
Oracle Configuration - created
At number - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id string - source
Type string - workspace
Id string
- configuration
Source
Oracle Configuration Args - created_
at float - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- secret_
id str - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source_
id str - source_
type str - workspace_
id str
- configuration Property Map
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
Supporting Types
SourceOracleConfiguration, SourceOracleConfigurationArgs
- Host string
- Hostname of the database.
- Username string
- The username which is used to access the database.
- Connection
Data SourceOracle Configuration Connection Data - Connect data that will be used for DB connection
- Encryption
Source
Oracle Configuration Encryption - The encryption method with 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
- Port of the database. Oracle Corporations recommends the following port numbers: 1521 - Default listening port for client connections to the listener. 2484 - Recommended and officially registered listening port for client connections to the listener using TCP/IP with SSL Default: 1521
- Schemas List<string>
- The list of schemas to sync from. Defaults to user. Case sensitive.
- Tunnel
Method SourceOracle 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
- Hostname of the database.
- Username string
- The username which is used to access the database.
- Connection
Data SourceOracle Configuration Connection Data - Connect data that will be used for DB connection
- Encryption
Source
Oracle Configuration Encryption - The encryption method with 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
- Port of the database. Oracle Corporations recommends the following port numbers: 1521 - Default listening port for client connections to the listener. 2484 - Recommended and officially registered listening port for client connections to the listener using TCP/IP with SSL Default: 1521
- Schemas []string
- The list of schemas to sync from. Defaults to user. Case sensitive.
- Tunnel
Method SourceOracle 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
- Hostname of the database.
- username String
- The username which is used to access the database.
- connection
Data SourceOracle Configuration Connection Data - Connect data that will be used for DB connection
- encryption
Source
Oracle Configuration Encryption - The encryption method with 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
- Port of the database. Oracle Corporations recommends the following port numbers: 1521 - Default listening port for client connections to the listener. 2484 - Recommended and officially registered listening port for client connections to the listener using TCP/IP with SSL Default: 1521
- schemas List<String>
- The list of schemas to sync from. Defaults to user. Case sensitive.
- tunnel
Method SourceOracle 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
- Hostname of the database.
- username string
- The username which is used to access the database.
- connection
Data SourceOracle Configuration Connection Data - Connect data that will be used for DB connection
- encryption
Source
Oracle Configuration Encryption - The encryption method with 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
- Port of the database. Oracle Corporations recommends the following port numbers: 1521 - Default listening port for client connections to the listener. 2484 - Recommended and officially registered listening port for client connections to the listener using TCP/IP with SSL Default: 1521
- schemas string[]
- The list of schemas to sync from. Defaults to user. Case sensitive.
- tunnel
Method SourceOracle 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
- Hostname of the database.
- username str
- The username which is used to access the database.
- connection_
data SourceOracle Configuration Connection Data - Connect data that will be used for DB connection
- encryption
Source
Oracle Configuration Encryption - The encryption method with 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
- Port of the database. Oracle Corporations recommends the following port numbers: 1521 - Default listening port for client connections to the listener. 2484 - Recommended and officially registered listening port for client connections to the listener using TCP/IP with SSL Default: 1521
- schemas Sequence[str]
- The list of schemas to sync from. Defaults to user. Case sensitive.
- tunnel_
method SourceOracle 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
- Hostname of the database.
- username String
- The username which is used to access the database.
- connection
Data Property Map - Connect data that will be used for DB connection
- encryption Property Map
- The encryption method with 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
- Port of the database. Oracle Corporations recommends the following port numbers: 1521 - Default listening port for client connections to the listener. 2484 - Recommended and officially registered listening port for client connections to the listener using TCP/IP with SSL Default: 1521
- schemas List<String>
- The list of schemas to sync from. Defaults to user. Case sensitive.
- tunnel
Method Property Map - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
SourceOracleConfigurationConnectionData, SourceOracleConfigurationConnectionDataArgs
- Service
Name SourceOracle Configuration Connection Data Service Name - Use service name
- System
Idsid SourceOracle Configuration Connection Data System Idsid - Use SID (Oracle System Identifier)
- Service
Name SourceOracle Configuration Connection Data Service Name - Use service name
- System
Idsid SourceOracle Configuration Connection Data System Idsid - Use SID (Oracle System Identifier)
- service
Name SourceOracle Configuration Connection Data Service Name - Use service name
- system
Idsid SourceOracle Configuration Connection Data System Idsid - Use SID (Oracle System Identifier)
- service
Name SourceOracle Configuration Connection Data Service Name - Use service name
- system
Idsid SourceOracle Configuration Connection Data System Idsid - Use SID (Oracle System Identifier)
- service_
name SourceOracle Configuration Connection Data Service Name - Use service name
- system_
idsid SourceOracle Configuration Connection Data System Idsid - Use SID (Oracle System Identifier)
- service
Name Property Map - Use service name
- system
Idsid Property Map - Use SID (Oracle System Identifier)
SourceOracleConfigurationConnectionDataServiceName, SourceOracleConfigurationConnectionDataServiceNameArgs
- Service
Name string
- Service
Name string
- service
Name String
- service
Name string
- service_
name str
- service
Name String
SourceOracleConfigurationConnectionDataSystemIdsid, SourceOracleConfigurationConnectionDataSystemIdsidArgs
- Sid string
- Sid string
- sid String
- sid string
- sid str
- sid String
SourceOracleConfigurationEncryption, SourceOracleConfigurationEncryptionArgs
- Native
Network SourceEncryption 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 SourceVerify Certificate Oracle Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- Unencrypted
Source
Oracle Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- Native
Network SourceEncryption 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 SourceVerify Certificate Oracle Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- Unencrypted
Source
Oracle Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- native
Network SourceEncryption 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 SourceVerify Certificate Oracle Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- unencrypted
Source
Oracle Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- native
Network SourceEncryption 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 SourceVerify Certificate Oracle Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- unencrypted
Source
Oracle Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- native_
network_ Sourceencryption_ 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_ Sourceverify_ certificate Oracle Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- unencrypted
Source
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.
SourceOracleConfigurationEncryptionNativeNetworkEncryptionNne, SourceOracleConfigurationEncryptionNativeNetworkEncryptionNneArgs
- Encryption
Algorithm string - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
- Encryption
Algorithm string - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
- encryption
Algorithm String - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
- encryption
Algorithm string - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
- encryption_
algorithm str - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
- encryption
Algorithm String - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
SourceOracleConfigurationEncryptionTlsEncryptedVerifyCertificate, SourceOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs
- 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.
SourceOracleConfigurationTunnelMethod, SourceOracleConfigurationTunnelMethodArgs
SourceOracleConfigurationTunnelMethodPasswordAuthentication, SourceOracleConfigurationTunnelMethodPasswordAuthenticationArgs
- 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
SourceOracleConfigurationTunnelMethodSshKeyAuthentication, SourceOracleConfigurationTunnelMethodSshKeyAuthenticationArgs
- 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/sourceOracle:SourceOracle my_airbyte_source_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.