airbyte.SourceMssql
Explore with Pulumi AI
SourceMssql 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.SourceMssql;
import com.pulumi.airbyte.SourceMssqlArgs;
import com.pulumi.airbyte.inputs.SourceMssqlConfigurationArgs;
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 mySourceMssql = new SourceMssql("mySourceMssql", SourceMssqlArgs.builder()
.configuration(SourceMssqlConfigurationArgs.builder()
.database("master")
.host("...my_host...")
.jdbc_url_params("...my_jdbc_url_params...")
.password("...my_password...")
.port(1433)
.replication_method(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.schemas()
.ssl_method(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tunnel_method(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.username("...my_username...")
.build())
.definitionId("3156776f-a553-4f83-b7be-07e1d515092f")
.secretId("...my_secret_id...")
.workspaceId("89a5f137-cba1-4f2e-85cc-db4cd4426082")
.build());
}
}
resources:
mySourceMssql:
type: airbyte:SourceMssql
properties:
configuration:
database: master
host: '...my_host...'
jdbc_url_params: '...my_jdbc_url_params...'
password: '...my_password...'
port: 1433
replication_method:
readChangesUsingChangeDataCaptureCdc:
initialLoadTimeoutHours: 4
initialWaitingSeconds: 0
invalidCdcCursorPositionBehavior: Re-sync data
queueSize: 9
scanChangesWithUserDefinedCursor: {}
schemas: []
ssl_method:
encryptedTrustServerCertificate: {}
encryptedVerifyCertificate:
certificate: '...my_certificate...'
hostNameInCertificate: '...my_host_name_in_certificate...'
unencrypted: {}
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: 3156776f-a553-4f83-b7be-07e1d515092f
secretId: '...my_secret_id...'
workspaceId: 89a5f137-cba1-4f2e-85cc-db4cd4426082
Create SourceMssql Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceMssql(name: string, args: SourceMssqlArgs, opts?: CustomResourceOptions);
@overload
def SourceMssql(resource_name: str,
args: SourceMssqlArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SourceMssql(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceMssqlConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None)
func NewSourceMssql(ctx *Context, name string, args SourceMssqlArgs, opts ...ResourceOption) (*SourceMssql, error)
public SourceMssql(string name, SourceMssqlArgs args, CustomResourceOptions? opts = null)
public SourceMssql(String name, SourceMssqlArgs args)
public SourceMssql(String name, SourceMssqlArgs args, CustomResourceOptions options)
type: airbyte:SourceMssql
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 SourceMssqlArgs
- 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 SourceMssqlArgs
- 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 SourceMssqlArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceMssqlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceMssqlArgs
- 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 sourceMssqlResource = new Airbyte.SourceMssql("sourceMssqlResource", new()
{
Configuration = new Airbyte.Inputs.SourceMssqlConfigurationArgs
{
Database = "string",
Host = "string",
Password = "string",
Port = 0,
Username = "string",
JdbcUrlParams = "string",
ReplicationMethod = new Airbyte.Inputs.SourceMssqlConfigurationReplicationMethodArgs
{
ReadChangesUsingChangeDataCaptureCdc = new Airbyte.Inputs.SourceMssqlConfigurationReplicationMethodReadChangesUsingChangeDataCaptureCdcArgs
{
InitialLoadTimeoutHours = 0,
InitialWaitingSeconds = 0,
InvalidCdcCursorPositionBehavior = "string",
QueueSize = 0,
},
ScanChangesWithUserDefinedCursor = null,
},
Schemas = new[]
{
"string",
},
SslMethod = new Airbyte.Inputs.SourceMssqlConfigurationSslMethodArgs
{
EncryptedTrustServerCertificate = null,
EncryptedVerifyCertificate = new Airbyte.Inputs.SourceMssqlConfigurationSslMethodEncryptedVerifyCertificateArgs
{
Certificate = "string",
HostNameInCertificate = "string",
},
Unencrypted = null,
},
TunnelMethod = new Airbyte.Inputs.SourceMssqlConfigurationTunnelMethodArgs
{
NoTunnel = null,
PasswordAuthentication = new Airbyte.Inputs.SourceMssqlConfigurationTunnelMethodPasswordAuthenticationArgs
{
TunnelHost = "string",
TunnelUser = "string",
TunnelUserPassword = "string",
TunnelPort = 0,
},
SshKeyAuthentication = new Airbyte.Inputs.SourceMssqlConfigurationTunnelMethodSshKeyAuthenticationArgs
{
SshKey = "string",
TunnelHost = "string",
TunnelUser = "string",
TunnelPort = 0,
},
},
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
SecretId = "string",
});
example, err := airbyte.NewSourceMssql(ctx, "sourceMssqlResource", &airbyte.SourceMssqlArgs{
Configuration: &.SourceMssqlConfigurationArgs{
Database: pulumi.String("string"),
Host: pulumi.String("string"),
Password: pulumi.String("string"),
Port: pulumi.Float64(0),
Username: pulumi.String("string"),
JdbcUrlParams: pulumi.String("string"),
ReplicationMethod: &.SourceMssqlConfigurationReplicationMethodArgs{
ReadChangesUsingChangeDataCaptureCdc: &.SourceMssqlConfigurationReplicationMethodReadChangesUsingChangeDataCaptureCdcArgs{
InitialLoadTimeoutHours: pulumi.Float64(0),
InitialWaitingSeconds: pulumi.Float64(0),
InvalidCdcCursorPositionBehavior: pulumi.String("string"),
QueueSize: pulumi.Float64(0),
},
ScanChangesWithUserDefinedCursor: &.SourceMssqlConfigurationReplicationMethodScanChangesWithUserDefinedCursorArgs{
},
},
Schemas: pulumi.StringArray{
pulumi.String("string"),
},
SslMethod: &.SourceMssqlConfigurationSslMethodArgs{
EncryptedTrustServerCertificate: &.SourceMssqlConfigurationSslMethodEncryptedTrustServerCertificateArgs{
},
EncryptedVerifyCertificate: &.SourceMssqlConfigurationSslMethodEncryptedVerifyCertificateArgs{
Certificate: pulumi.String("string"),
HostNameInCertificate: pulumi.String("string"),
},
Unencrypted: &.SourceMssqlConfigurationSslMethodUnencryptedArgs{
},
},
TunnelMethod: &.SourceMssqlConfigurationTunnelMethodArgs{
NoTunnel: &.SourceMssqlConfigurationTunnelMethodNoTunnelArgs{
},
PasswordAuthentication: &.SourceMssqlConfigurationTunnelMethodPasswordAuthenticationArgs{
TunnelHost: pulumi.String("string"),
TunnelUser: pulumi.String("string"),
TunnelUserPassword: pulumi.String("string"),
TunnelPort: pulumi.Float64(0),
},
SshKeyAuthentication: &.SourceMssqlConfigurationTunnelMethodSshKeyAuthenticationArgs{
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 sourceMssqlResource = new SourceMssql("sourceMssqlResource", SourceMssqlArgs.builder()
.configuration(SourceMssqlConfigurationArgs.builder()
.database("string")
.host("string")
.password("string")
.port(0)
.username("string")
.jdbcUrlParams("string")
.replicationMethod(SourceMssqlConfigurationReplicationMethodArgs.builder()
.readChangesUsingChangeDataCaptureCdc(SourceMssqlConfigurationReplicationMethodReadChangesUsingChangeDataCaptureCdcArgs.builder()
.initialLoadTimeoutHours(0)
.initialWaitingSeconds(0)
.invalidCdcCursorPositionBehavior("string")
.queueSize(0)
.build())
.scanChangesWithUserDefinedCursor()
.build())
.schemas("string")
.sslMethod(SourceMssqlConfigurationSslMethodArgs.builder()
.encryptedTrustServerCertificate()
.encryptedVerifyCertificate(SourceMssqlConfigurationSslMethodEncryptedVerifyCertificateArgs.builder()
.certificate("string")
.hostNameInCertificate("string")
.build())
.unencrypted()
.build())
.tunnelMethod(SourceMssqlConfigurationTunnelMethodArgs.builder()
.noTunnel()
.passwordAuthentication(SourceMssqlConfigurationTunnelMethodPasswordAuthenticationArgs.builder()
.tunnelHost("string")
.tunnelUser("string")
.tunnelUserPassword("string")
.tunnelPort(0)
.build())
.sshKeyAuthentication(SourceMssqlConfigurationTunnelMethodSshKeyAuthenticationArgs.builder()
.sshKey("string")
.tunnelHost("string")
.tunnelUser("string")
.tunnelPort(0)
.build())
.build())
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.secretId("string")
.build());
source_mssql_resource = airbyte.SourceMssql("sourceMssqlResource",
configuration={
"database": "string",
"host": "string",
"password": "string",
"port": 0,
"username": "string",
"jdbc_url_params": "string",
"replication_method": {
"read_changes_using_change_data_capture_cdc": {
"initial_load_timeout_hours": 0,
"initial_waiting_seconds": 0,
"invalid_cdc_cursor_position_behavior": "string",
"queue_size": 0,
},
"scan_changes_with_user_defined_cursor": {},
},
"schemas": ["string"],
"ssl_method": {
"encrypted_trust_server_certificate": {},
"encrypted_verify_certificate": {
"certificate": "string",
"host_name_in_certificate": "string",
},
"unencrypted": {},
},
"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 sourceMssqlResource = new airbyte.SourceMssql("sourceMssqlResource", {
configuration: {
database: "string",
host: "string",
password: "string",
port: 0,
username: "string",
jdbcUrlParams: "string",
replicationMethod: {
readChangesUsingChangeDataCaptureCdc: {
initialLoadTimeoutHours: 0,
initialWaitingSeconds: 0,
invalidCdcCursorPositionBehavior: "string",
queueSize: 0,
},
scanChangesWithUserDefinedCursor: {},
},
schemas: ["string"],
sslMethod: {
encryptedTrustServerCertificate: {},
encryptedVerifyCertificate: {
certificate: "string",
hostNameInCertificate: "string",
},
unencrypted: {},
},
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:SourceMssql
properties:
configuration:
database: string
host: string
jdbcUrlParams: string
password: string
port: 0
replicationMethod:
readChangesUsingChangeDataCaptureCdc:
initialLoadTimeoutHours: 0
initialWaitingSeconds: 0
invalidCdcCursorPositionBehavior: string
queueSize: 0
scanChangesWithUserDefinedCursor: {}
schemas:
- string
sslMethod:
encryptedTrustServerCertificate: {}
encryptedVerifyCertificate:
certificate: string
hostNameInCertificate: string
unencrypted: {}
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
SourceMssql 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 SourceMssql resource accepts the following input properties:
- Configuration
Source
Mssql 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
Mssql 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
Mssql 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
Mssql 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
Mssql 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 SourceMssql 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 SourceMssql Resource
Get an existing SourceMssql 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?: SourceMssqlState, opts?: CustomResourceOptions): SourceMssql
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceMssqlConfigurationArgs] = 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) -> SourceMssql
func GetSourceMssql(ctx *Context, name string, id IDInput, state *SourceMssqlState, opts ...ResourceOption) (*SourceMssql, error)
public static SourceMssql Get(string name, Input<string> id, SourceMssqlState? state, CustomResourceOptions? opts = null)
public static SourceMssql get(String name, Output<String> id, SourceMssqlState state, CustomResourceOptions options)
resources: _: type: airbyte:SourceMssql 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
Mssql 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
Mssql 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
Mssql 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
Mssql 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
Mssql 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
SourceMssqlConfiguration, SourceMssqlConfigurationArgs
- Database string
- The name of the database.
- Host string
- The hostname of the database.
- Password string
- The password associated with the username.
- Port double
- The port of the database.
- Username string
- The username which is used to access 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).
- Replication
Method SourceMssql Configuration Replication Method - Configures how data is extracted from the database.
- Schemas List<string>
- The list of schemas to sync from. Defaults to user. Case sensitive.
- Ssl
Method SourceMssql Configuration Ssl Method - The encryption method which is used when communicating with the database.
- Tunnel
Method SourceMssql Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- Database string
- The name of the database.
- Host string
- The hostname of the database.
- Password string
- The password associated with the username.
- Port float64
- The port of the database.
- Username string
- The username which is used to access 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).
- Replication
Method SourceMssql Configuration Replication Method - Configures how data is extracted from the database.
- Schemas []string
- The list of schemas to sync from. Defaults to user. Case sensitive.
- Ssl
Method SourceMssql Configuration Ssl Method - The encryption method which is used when communicating with the database.
- Tunnel
Method SourceMssql Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- database String
- The name of the database.
- host String
- The hostname of the database.
- password String
- The password associated with the username.
- port Double
- The port of the database.
- username String
- The username which is used to access 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).
- replication
Method SourceMssql Configuration Replication Method - Configures how data is extracted from the database.
- schemas List<String>
- The list of schemas to sync from. Defaults to user. Case sensitive.
- ssl
Method SourceMssql Configuration Ssl Method - The encryption method which is used when communicating with the database.
- tunnel
Method SourceMssql Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- database string
- The name of the database.
- host string
- The hostname of the database.
- password string
- The password associated with the username.
- port number
- The port of the database.
- username string
- The username which is used to access 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).
- replication
Method SourceMssql Configuration Replication Method - Configures how data is extracted from the database.
- schemas string[]
- The list of schemas to sync from. Defaults to user. Case sensitive.
- ssl
Method SourceMssql Configuration Ssl Method - The encryption method which is used when communicating with the database.
- tunnel
Method SourceMssql Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- database str
- The name of the database.
- host str
- The hostname of the database.
- password str
- The password associated with the username.
- port float
- The port of the database.
- username str
- The username which is used to access 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).
- replication_
method SourceMssql Configuration Replication Method - Configures how data is extracted from the database.
- schemas Sequence[str]
- The list of schemas to sync from. Defaults to user. Case sensitive.
- ssl_
method SourceMssql Configuration Ssl Method - The encryption method which is used when communicating with the database.
- tunnel_
method SourceMssql Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- database String
- The name of the database.
- host String
- The hostname of the database.
- password String
- The password associated with the username.
- port Number
- The port of the database.
- username String
- The username which is used to access 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).
- replication
Method Property Map - Configures how data is extracted from the database.
- schemas List<String>
- The list of schemas to sync from. Defaults to user. Case sensitive.
- ssl
Method Property Map - The encryption method which is used when communicating with the database.
- tunnel
Method Property Map - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
SourceMssqlConfigurationReplicationMethod, SourceMssqlConfigurationReplicationMethodArgs
- Read
Changes SourceUsing Change Data Capture Cdc Mssql Configuration Replication Method Read Changes Using Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using the SQL Server's \n\nchange data capture feature\n\n. This must be enabled on your database.
- Scan
Changes SourceWith User Defined Cursor Mssql Configuration Replication Method Scan Changes With User Defined Cursor - Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
- Read
Changes SourceUsing Change Data Capture Cdc Mssql Configuration Replication Method Read Changes Using Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using the SQL Server's \n\nchange data capture feature\n\n. This must be enabled on your database.
- Scan
Changes SourceWith User Defined Cursor Mssql Configuration Replication Method Scan Changes With User Defined Cursor - Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
- read
Changes SourceUsing Change Data Capture Cdc Mssql Configuration Replication Method Read Changes Using Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using the SQL Server's \n\nchange data capture feature\n\n. This must be enabled on your database.
- scan
Changes SourceWith User Defined Cursor Mssql Configuration Replication Method Scan Changes With User Defined Cursor - Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
- read
Changes SourceUsing Change Data Capture Cdc Mssql Configuration Replication Method Read Changes Using Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using the SQL Server's \n\nchange data capture feature\n\n. This must be enabled on your database.
- scan
Changes SourceWith User Defined Cursor Mssql Configuration Replication Method Scan Changes With User Defined Cursor - Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
- read_
changes_ Sourceusing_ change_ data_ capture_ cdc Mssql Configuration Replication Method Read Changes Using Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using the SQL Server's \n\nchange data capture feature\n\n. This must be enabled on your database.
- scan_
changes_ Sourcewith_ user_ defined_ cursor Mssql Configuration Replication Method Scan Changes With User Defined Cursor - Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
- read
Changes Property MapUsing Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using the SQL Server's \n\nchange data capture feature\n\n. This must be enabled on your database.
- scan
Changes Property MapWith User Defined Cursor - Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
SourceMssqlConfigurationReplicationMethodReadChangesUsingChangeDataCaptureCdc, SourceMssqlConfigurationReplicationMethodReadChangesUsingChangeDataCaptureCdcArgs
- Initial
Load doubleTimeout Hours - The amount of time an initial load is allowed to continue for before catching up on CDC logs. Default: 8
- Initial
Waiting doubleSeconds - The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 3600 seconds. Read about \n\ninitial waiting time\n\n. Default: 300
- Invalid
Cdc stringCursor Position Behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value into the WAL. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- Queue
Size double - The size of the internal queue. This may interfere with memory consumption and efficiency of the connector, please be careful. Default: 10000
- Initial
Load float64Timeout Hours - The amount of time an initial load is allowed to continue for before catching up on CDC logs. Default: 8
- Initial
Waiting float64Seconds - The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 3600 seconds. Read about \n\ninitial waiting time\n\n. Default: 300
- Invalid
Cdc stringCursor Position Behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value into the WAL. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- Queue
Size float64 - The size of the internal queue. This may interfere with memory consumption and efficiency of the connector, please be careful. Default: 10000
- initial
Load DoubleTimeout Hours - The amount of time an initial load is allowed to continue for before catching up on CDC logs. Default: 8
- initial
Waiting DoubleSeconds - The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 3600 seconds. Read about \n\ninitial waiting time\n\n. Default: 300
- invalid
Cdc StringCursor Position Behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value into the WAL. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- queue
Size Double - The size of the internal queue. This may interfere with memory consumption and efficiency of the connector, please be careful. Default: 10000
- initial
Load numberTimeout Hours - The amount of time an initial load is allowed to continue for before catching up on CDC logs. Default: 8
- initial
Waiting numberSeconds - The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 3600 seconds. Read about \n\ninitial waiting time\n\n. Default: 300
- invalid
Cdc stringCursor Position Behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value into the WAL. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- queue
Size number - The size of the internal queue. This may interfere with memory consumption and efficiency of the connector, please be careful. Default: 10000
- initial_
load_ floattimeout_ hours - The amount of time an initial load is allowed to continue for before catching up on CDC logs. Default: 8
- initial_
waiting_ floatseconds - The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 3600 seconds. Read about \n\ninitial waiting time\n\n. Default: 300
- invalid_
cdc_ strcursor_ position_ behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value into the WAL. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- queue_
size float - The size of the internal queue. This may interfere with memory consumption and efficiency of the connector, please be careful. Default: 10000
- initial
Load NumberTimeout Hours - The amount of time an initial load is allowed to continue for before catching up on CDC logs. Default: 8
- initial
Waiting NumberSeconds - The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 3600 seconds. Read about \n\ninitial waiting time\n\n. Default: 300
- invalid
Cdc StringCursor Position Behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value into the WAL. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- queue
Size Number - The size of the internal queue. This may interfere with memory consumption and efficiency of the connector, please be careful. Default: 10000
SourceMssqlConfigurationSslMethod, SourceMssqlConfigurationSslMethodArgs
- Encrypted
Trust SourceServer Certificate Mssql Configuration Ssl Method Encrypted Trust Server Certificate - Use the certificate provided by the server without verification. (For testing purposes only!)
- Encrypted
Verify SourceCertificate Mssql Configuration Ssl Method Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- Unencrypted
Source
Mssql Configuration Ssl Method Unencrypted - Data transfer will not be encrypted.
- Encrypted
Trust SourceServer Certificate Mssql Configuration Ssl Method Encrypted Trust Server Certificate - Use the certificate provided by the server without verification. (For testing purposes only!)
- Encrypted
Verify SourceCertificate Mssql Configuration Ssl Method Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- Unencrypted
Source
Mssql Configuration Ssl Method Unencrypted - Data transfer will not be encrypted.
- encrypted
Trust SourceServer Certificate Mssql Configuration Ssl Method Encrypted Trust Server Certificate - Use the certificate provided by the server without verification. (For testing purposes only!)
- encrypted
Verify SourceCertificate Mssql Configuration Ssl Method Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- unencrypted
Source
Mssql Configuration Ssl Method Unencrypted - Data transfer will not be encrypted.
- encrypted
Trust SourceServer Certificate Mssql Configuration Ssl Method Encrypted Trust Server Certificate - Use the certificate provided by the server without verification. (For testing purposes only!)
- encrypted
Verify SourceCertificate Mssql Configuration Ssl Method Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- unencrypted
Source
Mssql Configuration Ssl Method Unencrypted - Data transfer will not be encrypted.
- encrypted_
trust_ Sourceserver_ certificate Mssql Configuration Ssl Method Encrypted Trust Server Certificate - Use the certificate provided by the server without verification. (For testing purposes only!)
- encrypted_
verify_ Sourcecertificate Mssql Configuration Ssl Method Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- unencrypted
Source
Mssql Configuration Ssl Method Unencrypted - Data transfer will not be encrypted.
- encrypted
Trust Property MapServer Certificate - Use the certificate provided by the server without verification. (For testing purposes only!)
- encrypted
Verify Property MapCertificate - Verify and use the certificate provided by the server.
- unencrypted Property Map
- Data transfer will not be encrypted.
SourceMssqlConfigurationSslMethodEncryptedVerifyCertificate, SourceMssqlConfigurationSslMethodEncryptedVerifyCertificateArgs
- Certificate string
- certificate of the server, or of the CA that signed the server certificate
- Host
Name stringIn Certificate - Specifies the host name of the server. The value of this property must match the subject property of the certificate.
- Certificate string
- certificate of the server, or of the CA that signed the server certificate
- Host
Name stringIn Certificate - Specifies the host name of the server. The value of this property must match the subject property of the certificate.
- certificate String
- certificate of the server, or of the CA that signed the server certificate
- host
Name StringIn Certificate - Specifies the host name of the server. The value of this property must match the subject property of the certificate.
- certificate string
- certificate of the server, or of the CA that signed the server certificate
- host
Name stringIn Certificate - Specifies the host name of the server. The value of this property must match the subject property of the certificate.
- certificate str
- certificate of the server, or of the CA that signed the server certificate
- host_
name_ strin_ certificate - Specifies the host name of the server. The value of this property must match the subject property of the certificate.
- certificate String
- certificate of the server, or of the CA that signed the server certificate
- host
Name StringIn Certificate - Specifies the host name of the server. The value of this property must match the subject property of the certificate.
SourceMssqlConfigurationTunnelMethod, SourceMssqlConfigurationTunnelMethodArgs
SourceMssqlConfigurationTunnelMethodPasswordAuthentication, SourceMssqlConfigurationTunnelMethodPasswordAuthenticationArgs
- 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
SourceMssqlConfigurationTunnelMethodSshKeyAuthentication, SourceMssqlConfigurationTunnelMethodSshKeyAuthenticationArgs
- 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/sourceMssql:SourceMssql my_airbyte_source_mssql ""
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.