1. Packages
  2. Airbyte Provider
  3. API Docs
  4. DestinationMysql
airbyte 0.10.0 published on Monday, Apr 14, 2025 by airbytehq

airbyte.DestinationMysql

Explore with Pulumi AI

DestinationMysql 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.DestinationMysql;
import com.pulumi.airbyte.DestinationMysqlArgs;
import com.pulumi.airbyte.inputs.DestinationMysqlConfigurationArgs;
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 myDestinationMysql = new DestinationMysql("myDestinationMysql", DestinationMysqlArgs.builder()
            .configuration(DestinationMysqlConfigurationArgs.builder()
                .database("...my_database...")
                .disable_type_dedupe(false)
                .host("...my_host...")
                .jdbc_url_params("...my_jdbc_url_params...")
                .password("...my_password...")
                .port(3306)
                .raw_data_schema("...my_raw_data_schema...")
                .ssl(true)
                .tunnel_method(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .username("...my_username...")
                .build())
            .definitionId("04cd57d1-121b-4002-bf3f-1761521783b6")
            .workspaceId("3c1b00ad-b0b5-47bb-93e0-65f72a419a35")
            .build());

    }
}
Copy
resources:
  myDestinationMysql:
    type: airbyte:DestinationMysql
    properties:
      configuration:
        database: '...my_database...'
        disable_type_dedupe: false
        host: '...my_host...'
        jdbc_url_params: '...my_jdbc_url_params...'
        password: '...my_password...'
        port: 3306
        raw_data_schema: '...my_raw_data_schema...'
        ssl: true
        tunnel_method:
          noTunnel: {}
        username: '...my_username...'
      definitionId: 04cd57d1-121b-4002-bf3f-1761521783b6
      workspaceId: 3c1b00ad-b0b5-47bb-93e0-65f72a419a35
Copy

Create DestinationMysql Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new DestinationMysql(name: string, args: DestinationMysqlArgs, opts?: CustomResourceOptions);
@overload
def DestinationMysql(resource_name: str,
                     args: DestinationMysqlArgs,
                     opts: Optional[ResourceOptions] = None)

@overload
def DestinationMysql(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     configuration: Optional[DestinationMysqlConfigurationArgs] = None,
                     workspace_id: Optional[str] = None,
                     definition_id: Optional[str] = None,
                     name: Optional[str] = None)
func NewDestinationMysql(ctx *Context, name string, args DestinationMysqlArgs, opts ...ResourceOption) (*DestinationMysql, error)
public DestinationMysql(string name, DestinationMysqlArgs args, CustomResourceOptions? opts = null)
public DestinationMysql(String name, DestinationMysqlArgs args)
public DestinationMysql(String name, DestinationMysqlArgs args, CustomResourceOptions options)
type: airbyte:DestinationMysql
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DestinationMysqlArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DestinationMysqlArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DestinationMysqlArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DestinationMysqlArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DestinationMysqlArgs
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 destinationMysqlResource = new Airbyte.DestinationMysql("destinationMysqlResource", new()
{
    Configuration = new Airbyte.Inputs.DestinationMysqlConfigurationArgs
    {
        Database = "string",
        Host = "string",
        Username = "string",
        DisableTypeDedupe = false,
        JdbcUrlParams = "string",
        Password = "string",
        Port = 0,
        RawDataSchema = "string",
        Ssl = false,
        TunnelMethod = new Airbyte.Inputs.DestinationMysqlConfigurationTunnelMethodArgs
        {
            NoTunnel = null,
            PasswordAuthentication = new Airbyte.Inputs.DestinationMysqlConfigurationTunnelMethodPasswordAuthenticationArgs
            {
                TunnelHost = "string",
                TunnelUser = "string",
                TunnelUserPassword = "string",
                TunnelPort = 0,
            },
            SshKeyAuthentication = new Airbyte.Inputs.DestinationMysqlConfigurationTunnelMethodSshKeyAuthenticationArgs
            {
                SshKey = "string",
                TunnelHost = "string",
                TunnelUser = "string",
                TunnelPort = 0,
            },
        },
    },
    WorkspaceId = "string",
    DefinitionId = "string",
    Name = "string",
});
Copy
example, err := airbyte.NewDestinationMysql(ctx, "destinationMysqlResource", &airbyte.DestinationMysqlArgs{
Configuration: &.DestinationMysqlConfigurationArgs{
Database: pulumi.String("string"),
Host: pulumi.String("string"),
Username: pulumi.String("string"),
DisableTypeDedupe: pulumi.Bool(false),
JdbcUrlParams: pulumi.String("string"),
Password: pulumi.String("string"),
Port: pulumi.Float64(0),
RawDataSchema: pulumi.String("string"),
Ssl: pulumi.Bool(false),
TunnelMethod: &.DestinationMysqlConfigurationTunnelMethodArgs{
NoTunnel: &.DestinationMysqlConfigurationTunnelMethodNoTunnelArgs{
},
PasswordAuthentication: &.DestinationMysqlConfigurationTunnelMethodPasswordAuthenticationArgs{
TunnelHost: pulumi.String("string"),
TunnelUser: pulumi.String("string"),
TunnelUserPassword: pulumi.String("string"),
TunnelPort: pulumi.Float64(0),
},
SshKeyAuthentication: &.DestinationMysqlConfigurationTunnelMethodSshKeyAuthenticationArgs{
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"),
})
Copy
var destinationMysqlResource = new DestinationMysql("destinationMysqlResource", DestinationMysqlArgs.builder()
    .configuration(DestinationMysqlConfigurationArgs.builder()
        .database("string")
        .host("string")
        .username("string")
        .disableTypeDedupe(false)
        .jdbcUrlParams("string")
        .password("string")
        .port(0)
        .rawDataSchema("string")
        .ssl(false)
        .tunnelMethod(DestinationMysqlConfigurationTunnelMethodArgs.builder()
            .noTunnel()
            .passwordAuthentication(DestinationMysqlConfigurationTunnelMethodPasswordAuthenticationArgs.builder()
                .tunnelHost("string")
                .tunnelUser("string")
                .tunnelUserPassword("string")
                .tunnelPort(0)
                .build())
            .sshKeyAuthentication(DestinationMysqlConfigurationTunnelMethodSshKeyAuthenticationArgs.builder()
                .sshKey("string")
                .tunnelHost("string")
                .tunnelUser("string")
                .tunnelPort(0)
                .build())
            .build())
        .build())
    .workspaceId("string")
    .definitionId("string")
    .name("string")
    .build());
Copy
destination_mysql_resource = airbyte.DestinationMysql("destinationMysqlResource",
    configuration={
        "database": "string",
        "host": "string",
        "username": "string",
        "disable_type_dedupe": False,
        "jdbc_url_params": "string",
        "password": "string",
        "port": 0,
        "raw_data_schema": "string",
        "ssl": False,
        "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")
Copy
const destinationMysqlResource = new airbyte.DestinationMysql("destinationMysqlResource", {
    configuration: {
        database: "string",
        host: "string",
        username: "string",
        disableTypeDedupe: false,
        jdbcUrlParams: "string",
        password: "string",
        port: 0,
        rawDataSchema: "string",
        ssl: false,
        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",
});
Copy
type: airbyte:DestinationMysql
properties:
    configuration:
        database: string
        disableTypeDedupe: false
        host: string
        jdbcUrlParams: string
        password: string
        port: 0
        rawDataSchema: string
        ssl: false
        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
Copy

DestinationMysql 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 DestinationMysql resource accepts the following input properties:

Configuration This property is required. DestinationMysqlConfiguration
WorkspaceId This property is required. string
DefinitionId 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 This property is required. DestinationMysqlConfigurationArgs
WorkspaceId This property is required. string
DefinitionId 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 This property is required. DestinationMysqlConfiguration
workspaceId This property is required. String
definitionId 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 This property is required. DestinationMysqlConfiguration
workspaceId This property is required. string
definitionId 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 This property is required. DestinationMysqlConfigurationArgs
workspace_id This property is required. 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 This property is required. Property Map
workspaceId This property is required. String
definitionId 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 DestinationMysql resource produces the following output properties:

CreatedAt double
DestinationId string
DestinationType string
Id string
The provider-assigned unique ID for this managed resource.
ResourceAllocation DestinationMysqlResourceAllocation
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.
CreatedAt float64
DestinationId string
DestinationType string
Id string
The provider-assigned unique ID for this managed resource.
ResourceAllocation DestinationMysqlResourceAllocation
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.
createdAt Double
destinationId String
destinationType String
id String
The provider-assigned unique ID for this managed resource.
resourceAllocation DestinationMysqlResourceAllocation
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.
createdAt number
destinationId string
destinationType string
id string
The provider-assigned unique ID for this managed resource.
resourceAllocation DestinationMysqlResourceAllocation
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 DestinationMysqlResourceAllocation
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.
createdAt Number
destinationId String
destinationType String
id String
The provider-assigned unique ID for this managed resource.
resourceAllocation 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 DestinationMysql Resource

Get an existing DestinationMysql 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?: DestinationMysqlState, opts?: CustomResourceOptions): DestinationMysql
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        configuration: Optional[DestinationMysqlConfigurationArgs] = 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[DestinationMysqlResourceAllocationArgs] = None,
        workspace_id: Optional[str] = None) -> DestinationMysql
func GetDestinationMysql(ctx *Context, name string, id IDInput, state *DestinationMysqlState, opts ...ResourceOption) (*DestinationMysql, error)
public static DestinationMysql Get(string name, Input<string> id, DestinationMysqlState? state, CustomResourceOptions? opts = null)
public static DestinationMysql get(String name, Output<String> id, DestinationMysqlState state, CustomResourceOptions options)
resources:  _:    type: airbyte:DestinationMysql    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Configuration DestinationMysqlConfiguration
CreatedAt double
DefinitionId string
The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
DestinationId string
DestinationType string
Name string
Name of the destination e.g. dev-mysql-instance.
ResourceAllocation DestinationMysqlResourceAllocation
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.
WorkspaceId string
Configuration DestinationMysqlConfigurationArgs
CreatedAt float64
DefinitionId string
The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
DestinationId string
DestinationType string
Name string
Name of the destination e.g. dev-mysql-instance.
ResourceAllocation DestinationMysqlResourceAllocationArgs
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.
WorkspaceId string
configuration DestinationMysqlConfiguration
createdAt Double
definitionId String
The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
destinationId String
destinationType String
name String
Name of the destination e.g. dev-mysql-instance.
resourceAllocation DestinationMysqlResourceAllocation
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.
workspaceId String
configuration DestinationMysqlConfiguration
createdAt number
definitionId string
The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
destinationId string
destinationType string
name string
Name of the destination e.g. dev-mysql-instance.
resourceAllocation DestinationMysqlResourceAllocation
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.
workspaceId string
configuration DestinationMysqlConfigurationArgs
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.
resource_allocation DestinationMysqlResourceAllocationArgs
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
createdAt Number
definitionId String
The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
destinationId String
destinationType String
name String
Name of the destination e.g. dev-mysql-instance.
resourceAllocation 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.
workspaceId String

Supporting Types

DestinationMysqlConfiguration
, DestinationMysqlConfigurationArgs

Database This property is required. string
Name of the database.
Host This property is required. string
Hostname of the database.
Username This property is required. string
Username to use to access the database.
DisableTypeDedupe bool
Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
JdbcUrlParams string
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
Password associated with the username.
Port double
Port of the database. Default: 3306
RawDataSchema string
The database to write raw tables into
Ssl bool
Encrypt data using SSL. Default: true
TunnelMethod DestinationMysqlConfigurationTunnelMethod
Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
Database This property is required. string
Name of the database.
Host This property is required. string
Hostname of the database.
Username This property is required. string
Username to use to access the database.
DisableTypeDedupe bool
Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
JdbcUrlParams string
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
Password associated with the username.
Port float64
Port of the database. Default: 3306
RawDataSchema string
The database to write raw tables into
Ssl bool
Encrypt data using SSL. Default: true
TunnelMethod DestinationMysqlConfigurationTunnelMethod
Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
database This property is required. String
Name of the database.
host This property is required. String
Hostname of the database.
username This property is required. String
Username to use to access the database.
disableTypeDedupe Boolean
Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
jdbcUrlParams String
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
Password associated with the username.
port Double
Port of the database. Default: 3306
rawDataSchema String
The database to write raw tables into
ssl Boolean
Encrypt data using SSL. Default: true
tunnelMethod DestinationMysqlConfigurationTunnelMethod
Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
database This property is required. string
Name of the database.
host This property is required. string
Hostname of the database.
username This property is required. string
Username to use to access the database.
disableTypeDedupe boolean
Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
jdbcUrlParams string
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
Password associated with the username.
port number
Port of the database. Default: 3306
rawDataSchema string
The database to write raw tables into
ssl boolean
Encrypt data using SSL. Default: true
tunnelMethod DestinationMysqlConfigurationTunnelMethod
Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
database This property is required. str
Name of the database.
host This property is required. str
Hostname of the database.
username This property is required. str
Username to use to access the database.
disable_type_dedupe bool
Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
jdbc_url_params str
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
Password associated with the username.
port float
Port of the database. Default: 3306
raw_data_schema str
The database to write raw tables into
ssl bool
Encrypt data using SSL. Default: true
tunnel_method DestinationMysqlConfigurationTunnelMethod
Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
database This property is required. String
Name of the database.
host This property is required. String
Hostname of the database.
username This property is required. String
Username to use to access the database.
disableTypeDedupe Boolean
Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
jdbcUrlParams String
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
Password associated with the username.
port Number
Port of the database. Default: 3306
rawDataSchema String
The database to write raw tables into
ssl Boolean
Encrypt data using SSL. Default: true
tunnelMethod Property Map
Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.

DestinationMysqlConfigurationTunnelMethod
, DestinationMysqlConfigurationTunnelMethodArgs

DestinationMysqlConfigurationTunnelMethodPasswordAuthentication
, DestinationMysqlConfigurationTunnelMethodPasswordAuthenticationArgs

TunnelHost This property is required. string
Hostname of the jump server host that allows inbound ssh tunnel.
TunnelUser This property is required. string
OS-level username for logging into the jump server host
TunnelUserPassword This property is required. string
OS-level password for logging into the jump server host
TunnelPort double
Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
TunnelHost This property is required. string
Hostname of the jump server host that allows inbound ssh tunnel.
TunnelUser This property is required. string
OS-level username for logging into the jump server host
TunnelUserPassword This property is required. string
OS-level password for logging into the jump server host
TunnelPort float64
Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
tunnelHost This property is required. String
Hostname of the jump server host that allows inbound ssh tunnel.
tunnelUser This property is required. String
OS-level username for logging into the jump server host
tunnelUserPassword This property is required. String
OS-level password for logging into the jump server host
tunnelPort Double
Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
tunnelHost This property is required. string
Hostname of the jump server host that allows inbound ssh tunnel.
tunnelUser This property is required. string
OS-level username for logging into the jump server host
tunnelUserPassword This property is required. string
OS-level password for logging into the jump server host
tunnelPort number
Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
tunnel_host This property is required. str
Hostname of the jump server host that allows inbound ssh tunnel.
tunnel_user This property is required. str
OS-level username for logging into the jump server host
tunnel_user_password This property is required. str
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
tunnelHost This property is required. String
Hostname of the jump server host that allows inbound ssh tunnel.
tunnelUser This property is required. String
OS-level username for logging into the jump server host
tunnelUserPassword This property is required. String
OS-level password for logging into the jump server host
tunnelPort Number
Port on the proxy/jump server that accepts inbound ssh connections. Default: 22

DestinationMysqlConfigurationTunnelMethodSshKeyAuthentication
, DestinationMysqlConfigurationTunnelMethodSshKeyAuthenticationArgs

SshKey This property is required. string
OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
TunnelHost This property is required. string
Hostname of the jump server host that allows inbound ssh tunnel.
TunnelUser This property is required. string
OS-level username for logging into the jump server host.
TunnelPort double
Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
SshKey This property is required. string
OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
TunnelHost This property is required. string
Hostname of the jump server host that allows inbound ssh tunnel.
TunnelUser This property is required. string
OS-level username for logging into the jump server host.
TunnelPort float64
Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
sshKey This property is required. String
OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
tunnelHost This property is required. String
Hostname of the jump server host that allows inbound ssh tunnel.
tunnelUser This property is required. String
OS-level username for logging into the jump server host.
tunnelPort Double
Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
sshKey This property is required. string
OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
tunnelHost This property is required. string
Hostname of the jump server host that allows inbound ssh tunnel.
tunnelUser This property is required. string
OS-level username for logging into the jump server host.
tunnelPort number
Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
ssh_key This property is required. 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 This property is required. str
Hostname of the jump server host that allows inbound ssh tunnel.
tunnel_user This property is required. 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
sshKey This property is required. String
OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
tunnelHost This property is required. String
Hostname of the jump server host that allows inbound ssh tunnel.
tunnelUser This property is required. String
OS-level username for logging into the jump server host.
tunnelPort Number
Port on the proxy/jump server that accepts inbound ssh connections. Default: 22

DestinationMysqlResourceAllocation
, DestinationMysqlResourceAllocationArgs

Default DestinationMysqlResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
JobSpecifics List<DestinationMysqlResourceAllocationJobSpecific>
Default DestinationMysqlResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
JobSpecifics []DestinationMysqlResourceAllocationJobSpecific
default_ DestinationMysqlResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
jobSpecifics List<DestinationMysqlResourceAllocationJobSpecific>
default DestinationMysqlResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
jobSpecifics DestinationMysqlResourceAllocationJobSpecific[]
default DestinationMysqlResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
job_specifics Sequence[DestinationMysqlResourceAllocationJobSpecific]
default Property Map
optional resource requirements to run workers (blank for unbounded allocations)
jobSpecifics List<Property Map>

DestinationMysqlResourceAllocationDefault
, DestinationMysqlResourceAllocationDefaultArgs

DestinationMysqlResourceAllocationJobSpecific
, DestinationMysqlResourceAllocationJobSpecificArgs

JobType string
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
ResourceRequirements DestinationMysqlResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
JobType string
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
ResourceRequirements DestinationMysqlResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
jobType String
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
resourceRequirements DestinationMysqlResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
jobType string
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
resourceRequirements DestinationMysqlResourceAllocationJobSpecificResourceRequirements
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. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
resource_requirements DestinationMysqlResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
jobType String
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
resourceRequirements Property Map
optional resource requirements to run workers (blank for unbounded allocations)

DestinationMysqlResourceAllocationJobSpecificResourceRequirements
, DestinationMysqlResourceAllocationJobSpecificResourceRequirementsArgs

Import

$ pulumi import airbyte:index/destinationMysql:DestinationMysql my_airbyte_destination_mysql ""
Copy

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.