DestinationOracle Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as airbyte from "@pulumi/airbyte";
const myDestinationOracle = new airbyte.DestinationOracle("my_destination_oracle", {
configuration: {
additionalProperties: "{ \"see\": \"documentation\" }",
host: "...my_host...",
jdbcUrlParams: "...my_jdbc_url_params...",
password: "...my_password...",
port: 1521,
rawDataSchema: "...my_raw_data_schema...",
schema: "airbyte",
sid: "...my_sid...",
tunnelMethod: {
sshKeyAuthentication: {
sshKey: "...my_ssh_key...",
tunnelHost: "...my_tunnel_host...",
tunnelPort: 22,
tunnelUser: "...my_tunnel_user...",
},
},
username: "...my_username...",
},
definitionId: "28ddc2bd-35a7-4a51-966c-b9e88351add3",
name: "...my_name...",
workspaceId: "6900342e-4f38-4480-a5e0-1dce84f57ee6",
});
import pulumi
import pulumi_airbyte as airbyte
my_destination_oracle = airbyte.DestinationOracle("my_destination_oracle",
configuration={
"additional_properties": "{ \"see\": \"documentation\" }",
"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": {
"ssh_key_authentication": {
"ssh_key": "...my_ssh_key...",
"tunnel_host": "...my_tunnel_host...",
"tunnel_port": 22,
"tunnel_user": "...my_tunnel_user...",
},
},
"username": "...my_username...",
},
definition_id="28ddc2bd-35a7-4a51-966c-b9e88351add3",
name="...my_name...",
workspace_id="6900342e-4f38-4480-a5e0-1dce84f57ee6")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/airbyte/airbyte"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := airbyte.NewDestinationOracle(ctx, "my_destination_oracle", &airbyte.DestinationOracleArgs{
Configuration: &airbyte.DestinationOracleConfigurationArgs{
AdditionalProperties: pulumi.String("{ \"see\": \"documentation\" }"),
Host: pulumi.String("...my_host..."),
JdbcUrlParams: pulumi.String("...my_jdbc_url_params..."),
Password: pulumi.String("...my_password..."),
Port: pulumi.Float64(1521),
RawDataSchema: pulumi.String("...my_raw_data_schema..."),
Schema: pulumi.String("airbyte"),
Sid: pulumi.String("...my_sid..."),
TunnelMethod: &airbyte.DestinationOracleConfigurationTunnelMethodArgs{
SshKeyAuthentication: &airbyte.DestinationOracleConfigurationTunnelMethodSshKeyAuthenticationArgs{
SshKey: pulumi.String("...my_ssh_key..."),
TunnelHost: pulumi.String("...my_tunnel_host..."),
TunnelPort: pulumi.Float64(22),
TunnelUser: pulumi.String("...my_tunnel_user..."),
},
},
Username: pulumi.String("...my_username..."),
},
DefinitionId: pulumi.String("28ddc2bd-35a7-4a51-966c-b9e88351add3"),
Name: pulumi.String("...my_name..."),
WorkspaceId: pulumi.String("6900342e-4f38-4480-a5e0-1dce84f57ee6"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Airbyte = Pulumi.Airbyte;
return await Deployment.RunAsync(() =>
{
var myDestinationOracle = new Airbyte.DestinationOracle("my_destination_oracle", new()
{
Configuration = new Airbyte.Inputs.DestinationOracleConfigurationArgs
{
AdditionalProperties = "{ \"see\": \"documentation\" }",
Host = "...my_host...",
JdbcUrlParams = "...my_jdbc_url_params...",
Password = "...my_password...",
Port = 1521,
RawDataSchema = "...my_raw_data_schema...",
Schema = "airbyte",
Sid = "...my_sid...",
TunnelMethod = new Airbyte.Inputs.DestinationOracleConfigurationTunnelMethodArgs
{
SshKeyAuthentication = new Airbyte.Inputs.DestinationOracleConfigurationTunnelMethodSshKeyAuthenticationArgs
{
SshKey = "...my_ssh_key...",
TunnelHost = "...my_tunnel_host...",
TunnelPort = 22,
TunnelUser = "...my_tunnel_user...",
},
},
Username = "...my_username...",
},
DefinitionId = "28ddc2bd-35a7-4a51-966c-b9e88351add3",
Name = "...my_name...",
WorkspaceId = "6900342e-4f38-4480-a5e0-1dce84f57ee6",
});
});
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.DestinationOracleConfigurationTunnelMethodArgs;
import com.pulumi.airbyte.inputs.DestinationOracleConfigurationTunnelMethodSshKeyAuthenticationArgs;
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()
.additionalProperties("{ \"see\": \"documentation\" }")
.host("...my_host...")
.jdbcUrlParams("...my_jdbc_url_params...")
.password("...my_password...")
.port(1521.0)
.rawDataSchema("...my_raw_data_schema...")
.schema("airbyte")
.sid("...my_sid...")
.tunnelMethod(DestinationOracleConfigurationTunnelMethodArgs.builder()
.sshKeyAuthentication(DestinationOracleConfigurationTunnelMethodSshKeyAuthenticationArgs.builder()
.sshKey("...my_ssh_key...")
.tunnelHost("...my_tunnel_host...")
.tunnelPort(22.0)
.tunnelUser("...my_tunnel_user...")
.build())
.build())
.username("...my_username...")
.build())
.definitionId("28ddc2bd-35a7-4a51-966c-b9e88351add3")
.name("...my_name...")
.workspaceId("6900342e-4f38-4480-a5e0-1dce84f57ee6")
.build());
}
}
resources:
myDestinationOracle:
type: airbyte:DestinationOracle
name: my_destination_oracle
properties:
configuration:
additionalProperties: '{ "see": "documentation" }'
host: '...my_host...'
jdbcUrlParams: '...my_jdbc_url_params...'
password: '...my_password...'
port: 1521
rawDataSchema: '...my_raw_data_schema...'
schema: airbyte
sid: '...my_sid...'
tunnelMethod:
sshKeyAuthentication:
sshKey: '...my_ssh_key...'
tunnelHost: '...my_tunnel_host...'
tunnelPort: 22
tunnelUser: '...my_tunnel_user...'
username: '...my_username...'
definitionId: 28ddc2bd-35a7-4a51-966c-b9e88351add3
name: '...my_name...'
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",
AdditionalProperties = "string",
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: &airbyte.DestinationOracleConfigurationArgs{
Host: pulumi.String("string"),
Sid: pulumi.String("string"),
Username: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
JdbcUrlParams: pulumi.String("string"),
Password: pulumi.String("string"),
Port: pulumi.Float64(0),
RawDataSchema: pulumi.String("string"),
Schema: pulumi.String("string"),
TunnelMethod: &airbyte.DestinationOracleConfigurationTunnelMethodArgs{
NoTunnel: &airbyte.DestinationOracleConfigurationTunnelMethodNoTunnelArgs{},
PasswordAuthentication: &airbyte.DestinationOracleConfigurationTunnelMethodPasswordAuthenticationArgs{
TunnelHost: pulumi.String("string"),
TunnelUser: pulumi.String("string"),
TunnelUserPassword: pulumi.String("string"),
TunnelPort: pulumi.Float64(0),
},
SshKeyAuthentication: &airbyte.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")
.additionalProperties("string")
.jdbcUrlParams("string")
.password("string")
.port(0.0)
.rawDataSchema("string")
.schema("string")
.tunnelMethod(DestinationOracleConfigurationTunnelMethodArgs.builder()
.noTunnel(DestinationOracleConfigurationTunnelMethodNoTunnelArgs.builder()
.build())
.passwordAuthentication(DestinationOracleConfigurationTunnelMethodPasswordAuthenticationArgs.builder()
.tunnelHost("string")
.tunnelUser("string")
.tunnelUserPassword("string")
.tunnelPort(0.0)
.build())
.sshKeyAuthentication(DestinationOracleConfigurationTunnelMethodSshKeyAuthenticationArgs.builder()
.sshKey("string")
.tunnelHost("string")
.tunnelUser("string")
.tunnelPort(0.0)
.build())
.build())
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.build());
destination_oracle_resource = airbyte.DestinationOracle("destinationOracleResource",
configuration={
"host": "string",
"sid": "string",
"username": "string",
"additional_properties": "string",
"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",
additionalProperties: "string",
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:
additionalProperties: string
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 - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "3986776d-2319-4de9-8af8-db14c0996e72"; Requires replacement if changed.
- Name string
- Name of the destination e.g. dev-mysql-instance.
- Configuration
Destination
Oracle Configuration Args - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "3986776d-2319-4de9-8af8-db14c0996e72"; Requires replacement if changed.
- Name string
- Name of the destination e.g. dev-mysql-instance.
- configuration
Destination
Oracle Configuration - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "3986776d-2319-4de9-8af8-db14c0996e72"; Requires replacement if changed.
- name String
- Name of the destination e.g. dev-mysql-instance.
- configuration
Destination
Oracle Configuration - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- workspace
Id string - definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "3986776d-2319-4de9-8af8-db14c0996e72"; Requires replacement if changed.
- name string
- Name of the destination e.g. dev-mysql-instance.
- configuration
Destination
Oracle Configuration Args - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- workspace_
id str - definition_
id str - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "3986776d-2319-4de9-8af8-db14c0996e72"; Requires replacement if changed.
- name str
- Name of the destination e.g. dev-mysql-instance.
- configuration Property Map
- The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "3986776d-2319-4de9-8af8-db14c0996e72"; 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.
- Resource
Allocation DestinationOracle Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Created
At float64 - Destination
Id string - Destination
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation DestinationOracle Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- created
At Double - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation DestinationOracle Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- created
At number - destination
Id string - destination
Type string - id string
- The provider-assigned unique ID for this managed resource.
- resource
Allocation DestinationOracle Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- created_
at float - destination_
id str - destination_
type str - id str
- The provider-assigned unique ID for this managed resource.
- resource_
allocation DestinationOracle Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- created
At Number - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation Property Map - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
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,
resource_allocation: Optional[DestinationOracleResourceAllocationArgs] = None,
workspace_id: Optional[str] = None) -> DestinationOraclefunc 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 - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- Created
At double - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "3986776d-2319-4de9-8af8-db14c0996e72"; Requires replacement if changed.
- Destination
Id string - Destination
Type string - Name string
- Name of the destination e.g. dev-mysql-instance.
- Resource
Allocation DestinationOracle Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Workspace
Id string
- Configuration
Destination
Oracle Configuration Args - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- Created
At float64 - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "3986776d-2319-4de9-8af8-db14c0996e72"; Requires replacement if changed.
- Destination
Id string - Destination
Type string - Name string
- Name of the destination e.g. dev-mysql-instance.
- Resource
Allocation DestinationOracle Resource Allocation Args - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Workspace
Id string
- configuration
Destination
Oracle Configuration - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- created
At Double - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "3986776d-2319-4de9-8af8-db14c0996e72"; Requires replacement if changed.
- destination
Id String - destination
Type String - name String
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation DestinationOracle Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- workspace
Id String
- configuration
Destination
Oracle Configuration - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- created
At number - definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "3986776d-2319-4de9-8af8-db14c0996e72"; Requires replacement if changed.
- destination
Id string - destination
Type string - name string
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation DestinationOracle Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- workspace
Id string
- configuration
Destination
Oracle Configuration Args - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- created_
at float - definition_
id str - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "3986776d-2319-4de9-8af8-db14c0996e72"; Requires replacement if changed.
- destination_
id str - destination_
type str - name str
- Name of the destination e.g. dev-mysql-instance.
- resource_
allocation DestinationOracle Resource Allocation Args - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- workspace_
id str
- configuration Property Map
- The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "3986776d-2319-4de9-8af8-db14c0996e72"; Requires replacement if changed.
- destination
Id String - destination
Type String - name String
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation Property Map - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- 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.
- Additional
Properties string - Parsed as JSON.
- 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.
- Additional
Properties string - Parsed as JSON.
- 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.
- additional
Properties String - Parsed as JSON.
- 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.
- additional
Properties string - Parsed as JSON.
- 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.
- additional_
properties str - Parsed as JSON.
- 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.
- additional
Properties String - Parsed as JSON.
- 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.
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
DestinationOracleResourceAllocation, DestinationOracleResourceAllocationArgs
- Default
Destination
Oracle Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<DestinationOracle Resource Allocation Job Specific>
- Default
Destination
Oracle Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []DestinationOracle Resource Allocation Job Specific
- default_
Destination
Oracle Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<DestinationOracle Resource Allocation Job Specific>
- default
Destination
Oracle Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics DestinationOracle Resource Allocation Job Specific[]
- default
Destination
Oracle Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[DestinationOracle Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
DestinationOracleResourceAllocationDefault, DestinationOracleResourceAllocationDefaultArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
DestinationOracleResourceAllocationJobSpecific, DestinationOracleResourceAllocationJobSpecificArgs
- Job
Type string - enum that describes the different types of jobs that the platform runs.
- Resource
Requirements DestinationOracle Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Type string - enum that describes the different types of jobs that the platform runs.
- Resource
Requirements DestinationOracle Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type String - enum that describes the different types of jobs that the platform runs.
- resource
Requirements DestinationOracle Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type string - enum that describes the different types of jobs that the platform runs.
- resource
Requirements DestinationOracle Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job_
type str - enum that describes the different types of jobs that the platform runs.
- resource_
requirements DestinationOracle Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type String - enum that describes the different types of jobs that the platform runs.
- resource
Requirements Property Map - optional resource requirements to run workers (blank for unbounded allocations)
DestinationOracleResourceAllocationJobSpecificResourceRequirements, DestinationOracleResourceAllocationJobSpecificResourceRequirementsArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
Import
In Terraform v1.5.0 and later, the import block can be used with the id attribute, for example:
terraform
import {
to = airbyte_destination_oracle.my_airbyte_destination_oracle
id = “…”
}
The pulumi import command can be used, for example:
$ 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
airbyteTerraform Provider.
