airbyte.SourcePostgres
Explore with Pulumi AI
SourcePostgres 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.SourcePostgres;
import com.pulumi.airbyte.SourcePostgresArgs;
import com.pulumi.airbyte.inputs.SourcePostgresConfigurationArgs;
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 mySourcePostgres = new SourcePostgres("mySourcePostgres", SourcePostgresArgs.builder()
.configuration(SourcePostgresConfigurationArgs.builder()
.database("...my_database...")
.host("...my_host...")
.jdbc_url_params("...my_jdbc_url_params...")
.password("...my_password...")
.port(5432)
.replication_method()
.schemas()
.ssl_mode()
.tunnel_method(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.username("...my_username...")
.build())
.definitionId("be56435e-cbaf-420b-889d-1d220ff21125")
.secretId("...my_secret_id...")
.workspaceId("d122fa45-e536-42be-a02d-5e851e4eb0a6")
.build());
}
}
resources:
mySourcePostgres:
type: airbyte:SourcePostgres
properties:
configuration:
database: '...my_database...'
host: '...my_host...'
jdbc_url_params: '...my_jdbc_url_params...'
password: '...my_password...'
port: 5432
replication_method: {}
schemas: []
ssl_mode: {}
tunnel_method:
passwordAuthentication:
tunnelHost: '...my_tunnel_host...'
tunnelPort: 22
tunnelUser: '...my_tunnel_user...'
tunnelUserPassword: '...my_tunnel_user_password...'
username: '...my_username...'
definitionId: be56435e-cbaf-420b-889d-1d220ff21125
secretId: '...my_secret_id...'
workspaceId: d122fa45-e536-42be-a02d-5e851e4eb0a6
Create SourcePostgres Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourcePostgres(name: string, args: SourcePostgresArgs, opts?: CustomResourceOptions);
@overload
def SourcePostgres(resource_name: str,
args: SourcePostgresArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SourcePostgres(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourcePostgresConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None)
func NewSourcePostgres(ctx *Context, name string, args SourcePostgresArgs, opts ...ResourceOption) (*SourcePostgres, error)
public SourcePostgres(string name, SourcePostgresArgs args, CustomResourceOptions? opts = null)
public SourcePostgres(String name, SourcePostgresArgs args)
public SourcePostgres(String name, SourcePostgresArgs args, CustomResourceOptions options)
type: airbyte:SourcePostgres
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 SourcePostgresArgs
- 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 SourcePostgresArgs
- 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 SourcePostgresArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourcePostgresArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourcePostgresArgs
- 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 sourcePostgresResource = new Airbyte.SourcePostgres("sourcePostgresResource", new()
{
Configuration = new Airbyte.Inputs.SourcePostgresConfigurationArgs
{
Database = "string",
Host = "string",
Username = "string",
JdbcUrlParams = "string",
Password = "string",
Port = 0,
ReplicationMethod = new Airbyte.Inputs.SourcePostgresConfigurationReplicationMethodArgs
{
DetectChangesWithXminSystemColumn = null,
ReadChangesUsingWriteAheadLogCdc = new Airbyte.Inputs.SourcePostgresConfigurationReplicationMethodReadChangesUsingWriteAheadLogCdcArgs
{
Publication = "string",
ReplicationSlot = "string",
AdditionalProperties = "string",
HeartbeatActionQuery = "string",
InitialLoadTimeoutHours = 0,
InitialWaitingSeconds = 0,
InvalidCdcCursorPositionBehavior = "string",
LsnCommitBehaviour = "string",
Plugin = "string",
QueueSize = 0,
},
ScanChangesWithUserDefinedCursor = null,
},
Schemas = new[]
{
"string",
},
SslMode = new Airbyte.Inputs.SourcePostgresConfigurationSslModeArgs
{
Allow = new Airbyte.Inputs.SourcePostgresConfigurationSslModeAllowArgs
{
AdditionalProperties = "string",
},
Disable = new Airbyte.Inputs.SourcePostgresConfigurationSslModeDisableArgs
{
AdditionalProperties = "string",
},
Prefer = new Airbyte.Inputs.SourcePostgresConfigurationSslModePreferArgs
{
AdditionalProperties = "string",
},
Require = new Airbyte.Inputs.SourcePostgresConfigurationSslModeRequireArgs
{
AdditionalProperties = "string",
},
VerifyCa = new Airbyte.Inputs.SourcePostgresConfigurationSslModeVerifyCaArgs
{
CaCertificate = "string",
AdditionalProperties = "string",
ClientCertificate = "string",
ClientKey = "string",
ClientKeyPassword = "string",
},
VerifyFull = new Airbyte.Inputs.SourcePostgresConfigurationSslModeVerifyFullArgs
{
CaCertificate = "string",
AdditionalProperties = "string",
ClientCertificate = "string",
ClientKey = "string",
ClientKeyPassword = "string",
},
},
TunnelMethod = new Airbyte.Inputs.SourcePostgresConfigurationTunnelMethodArgs
{
NoTunnel = null,
PasswordAuthentication = new Airbyte.Inputs.SourcePostgresConfigurationTunnelMethodPasswordAuthenticationArgs
{
TunnelHost = "string",
TunnelUser = "string",
TunnelUserPassword = "string",
TunnelPort = 0,
},
SshKeyAuthentication = new Airbyte.Inputs.SourcePostgresConfigurationTunnelMethodSshKeyAuthenticationArgs
{
SshKey = "string",
TunnelHost = "string",
TunnelUser = "string",
TunnelPort = 0,
},
},
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
SecretId = "string",
});
example, err := airbyte.NewSourcePostgres(ctx, "sourcePostgresResource", &airbyte.SourcePostgresArgs{
Configuration: &.SourcePostgresConfigurationArgs{
Database: pulumi.String("string"),
Host: pulumi.String("string"),
Username: pulumi.String("string"),
JdbcUrlParams: pulumi.String("string"),
Password: pulumi.String("string"),
Port: pulumi.Float64(0),
ReplicationMethod: &.SourcePostgresConfigurationReplicationMethodArgs{
DetectChangesWithXminSystemColumn: &.SourcePostgresConfigurationReplicationMethodDetectChangesWithXminSystemColumnArgs{
},
ReadChangesUsingWriteAheadLogCdc: &.SourcePostgresConfigurationReplicationMethodReadChangesUsingWriteAheadLogCdcArgs{
Publication: pulumi.String("string"),
ReplicationSlot: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
HeartbeatActionQuery: pulumi.String("string"),
InitialLoadTimeoutHours: pulumi.Float64(0),
InitialWaitingSeconds: pulumi.Float64(0),
InvalidCdcCursorPositionBehavior: pulumi.String("string"),
LsnCommitBehaviour: pulumi.String("string"),
Plugin: pulumi.String("string"),
QueueSize: pulumi.Float64(0),
},
ScanChangesWithUserDefinedCursor: &.SourcePostgresConfigurationReplicationMethodScanChangesWithUserDefinedCursorArgs{
},
},
Schemas: pulumi.StringArray{
pulumi.String("string"),
},
SslMode: &.SourcePostgresConfigurationSslModeArgs{
Allow: &.SourcePostgresConfigurationSslModeAllowArgs{
AdditionalProperties: pulumi.String("string"),
},
Disable: &.SourcePostgresConfigurationSslModeDisableArgs{
AdditionalProperties: pulumi.String("string"),
},
Prefer: &.SourcePostgresConfigurationSslModePreferArgs{
AdditionalProperties: pulumi.String("string"),
},
Require: &.SourcePostgresConfigurationSslModeRequireArgs{
AdditionalProperties: pulumi.String("string"),
},
VerifyCa: &.SourcePostgresConfigurationSslModeVerifyCaArgs{
CaCertificate: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
ClientCertificate: pulumi.String("string"),
ClientKey: pulumi.String("string"),
ClientKeyPassword: pulumi.String("string"),
},
VerifyFull: &.SourcePostgresConfigurationSslModeVerifyFullArgs{
CaCertificate: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
ClientCertificate: pulumi.String("string"),
ClientKey: pulumi.String("string"),
ClientKeyPassword: pulumi.String("string"),
},
},
TunnelMethod: &.SourcePostgresConfigurationTunnelMethodArgs{
NoTunnel: &.SourcePostgresConfigurationTunnelMethodNoTunnelArgs{
},
PasswordAuthentication: &.SourcePostgresConfigurationTunnelMethodPasswordAuthenticationArgs{
TunnelHost: pulumi.String("string"),
TunnelUser: pulumi.String("string"),
TunnelUserPassword: pulumi.String("string"),
TunnelPort: pulumi.Float64(0),
},
SshKeyAuthentication: &.SourcePostgresConfigurationTunnelMethodSshKeyAuthenticationArgs{
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 sourcePostgresResource = new SourcePostgres("sourcePostgresResource", SourcePostgresArgs.builder()
.configuration(SourcePostgresConfigurationArgs.builder()
.database("string")
.host("string")
.username("string")
.jdbcUrlParams("string")
.password("string")
.port(0)
.replicationMethod(SourcePostgresConfigurationReplicationMethodArgs.builder()
.detectChangesWithXminSystemColumn()
.readChangesUsingWriteAheadLogCdc(SourcePostgresConfigurationReplicationMethodReadChangesUsingWriteAheadLogCdcArgs.builder()
.publication("string")
.replicationSlot("string")
.additionalProperties("string")
.heartbeatActionQuery("string")
.initialLoadTimeoutHours(0)
.initialWaitingSeconds(0)
.invalidCdcCursorPositionBehavior("string")
.lsnCommitBehaviour("string")
.plugin("string")
.queueSize(0)
.build())
.scanChangesWithUserDefinedCursor()
.build())
.schemas("string")
.sslMode(SourcePostgresConfigurationSslModeArgs.builder()
.allow(SourcePostgresConfigurationSslModeAllowArgs.builder()
.additionalProperties("string")
.build())
.disable(SourcePostgresConfigurationSslModeDisableArgs.builder()
.additionalProperties("string")
.build())
.prefer(SourcePostgresConfigurationSslModePreferArgs.builder()
.additionalProperties("string")
.build())
.require(SourcePostgresConfigurationSslModeRequireArgs.builder()
.additionalProperties("string")
.build())
.verifyCa(SourcePostgresConfigurationSslModeVerifyCaArgs.builder()
.caCertificate("string")
.additionalProperties("string")
.clientCertificate("string")
.clientKey("string")
.clientKeyPassword("string")
.build())
.verifyFull(SourcePostgresConfigurationSslModeVerifyFullArgs.builder()
.caCertificate("string")
.additionalProperties("string")
.clientCertificate("string")
.clientKey("string")
.clientKeyPassword("string")
.build())
.build())
.tunnelMethod(SourcePostgresConfigurationTunnelMethodArgs.builder()
.noTunnel()
.passwordAuthentication(SourcePostgresConfigurationTunnelMethodPasswordAuthenticationArgs.builder()
.tunnelHost("string")
.tunnelUser("string")
.tunnelUserPassword("string")
.tunnelPort(0)
.build())
.sshKeyAuthentication(SourcePostgresConfigurationTunnelMethodSshKeyAuthenticationArgs.builder()
.sshKey("string")
.tunnelHost("string")
.tunnelUser("string")
.tunnelPort(0)
.build())
.build())
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.secretId("string")
.build());
source_postgres_resource = airbyte.SourcePostgres("sourcePostgresResource",
configuration={
"database": "string",
"host": "string",
"username": "string",
"jdbc_url_params": "string",
"password": "string",
"port": 0,
"replication_method": {
"detect_changes_with_xmin_system_column": {},
"read_changes_using_write_ahead_log_cdc": {
"publication": "string",
"replication_slot": "string",
"additional_properties": "string",
"heartbeat_action_query": "string",
"initial_load_timeout_hours": 0,
"initial_waiting_seconds": 0,
"invalid_cdc_cursor_position_behavior": "string",
"lsn_commit_behaviour": "string",
"plugin": "string",
"queue_size": 0,
},
"scan_changes_with_user_defined_cursor": {},
},
"schemas": ["string"],
"ssl_mode": {
"allow": {
"additional_properties": "string",
},
"disable": {
"additional_properties": "string",
},
"prefer": {
"additional_properties": "string",
},
"require": {
"additional_properties": "string",
},
"verify_ca": {
"ca_certificate": "string",
"additional_properties": "string",
"client_certificate": "string",
"client_key": "string",
"client_key_password": "string",
},
"verify_full": {
"ca_certificate": "string",
"additional_properties": "string",
"client_certificate": "string",
"client_key": "string",
"client_key_password": "string",
},
},
"tunnel_method": {
"no_tunnel": {},
"password_authentication": {
"tunnel_host": "string",
"tunnel_user": "string",
"tunnel_user_password": "string",
"tunnel_port": 0,
},
"ssh_key_authentication": {
"ssh_key": "string",
"tunnel_host": "string",
"tunnel_user": "string",
"tunnel_port": 0,
},
},
},
workspace_id="string",
definition_id="string",
name="string",
secret_id="string")
const sourcePostgresResource = new airbyte.SourcePostgres("sourcePostgresResource", {
configuration: {
database: "string",
host: "string",
username: "string",
jdbcUrlParams: "string",
password: "string",
port: 0,
replicationMethod: {
detectChangesWithXminSystemColumn: {},
readChangesUsingWriteAheadLogCdc: {
publication: "string",
replicationSlot: "string",
additionalProperties: "string",
heartbeatActionQuery: "string",
initialLoadTimeoutHours: 0,
initialWaitingSeconds: 0,
invalidCdcCursorPositionBehavior: "string",
lsnCommitBehaviour: "string",
plugin: "string",
queueSize: 0,
},
scanChangesWithUserDefinedCursor: {},
},
schemas: ["string"],
sslMode: {
allow: {
additionalProperties: "string",
},
disable: {
additionalProperties: "string",
},
prefer: {
additionalProperties: "string",
},
require: {
additionalProperties: "string",
},
verifyCa: {
caCertificate: "string",
additionalProperties: "string",
clientCertificate: "string",
clientKey: "string",
clientKeyPassword: "string",
},
verifyFull: {
caCertificate: "string",
additionalProperties: "string",
clientCertificate: "string",
clientKey: "string",
clientKeyPassword: "string",
},
},
tunnelMethod: {
noTunnel: {},
passwordAuthentication: {
tunnelHost: "string",
tunnelUser: "string",
tunnelUserPassword: "string",
tunnelPort: 0,
},
sshKeyAuthentication: {
sshKey: "string",
tunnelHost: "string",
tunnelUser: "string",
tunnelPort: 0,
},
},
},
workspaceId: "string",
definitionId: "string",
name: "string",
secretId: "string",
});
type: airbyte:SourcePostgres
properties:
configuration:
database: string
host: string
jdbcUrlParams: string
password: string
port: 0
replicationMethod:
detectChangesWithXminSystemColumn: {}
readChangesUsingWriteAheadLogCdc:
additionalProperties: string
heartbeatActionQuery: string
initialLoadTimeoutHours: 0
initialWaitingSeconds: 0
invalidCdcCursorPositionBehavior: string
lsnCommitBehaviour: string
plugin: string
publication: string
queueSize: 0
replicationSlot: string
scanChangesWithUserDefinedCursor: {}
schemas:
- string
sslMode:
allow:
additionalProperties: string
disable:
additionalProperties: string
prefer:
additionalProperties: string
require:
additionalProperties: string
verifyCa:
additionalProperties: string
caCertificate: string
clientCertificate: string
clientKey: string
clientKeyPassword: string
verifyFull:
additionalProperties: string
caCertificate: string
clientCertificate: string
clientKey: string
clientKeyPassword: string
tunnelMethod:
noTunnel: {}
passwordAuthentication:
tunnelHost: string
tunnelPort: 0
tunnelUser: string
tunnelUserPassword: string
sshKeyAuthentication:
sshKey: string
tunnelHost: string
tunnelPort: 0
tunnelUser: string
username: string
definitionId: string
name: string
secretId: string
workspaceId: string
SourcePostgres 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 SourcePostgres resource accepts the following input properties:
- Configuration
Source
Postgres 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
Postgres 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
Postgres 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
Postgres 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
Postgres 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 SourcePostgres resource produces the following output properties:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation SourcePostgres 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.
- Source
Id string - Source
Type string
- Created
At float64 - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation SourcePostgres 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.
- Source
Id string - Source
Type string
- created
At Double - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation SourcePostgres 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.
- source
Id String - source
Type String
- created
At number - id string
- The provider-assigned unique ID for this managed resource.
- resource
Allocation SourcePostgres 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.
- source
Id string - source
Type string
- created_
at float - id str
- The provider-assigned unique ID for this managed resource.
- resource_
allocation SourcePostgres 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.
- source_
id str - source_
type str
- created
At Number - 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.
- source
Id String - source
Type String
Look up Existing SourcePostgres Resource
Get an existing SourcePostgres 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?: SourcePostgresState, opts?: CustomResourceOptions): SourcePostgres
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourcePostgresConfigurationArgs] = None,
created_at: Optional[float] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
resource_allocation: Optional[SourcePostgresResourceAllocationArgs] = None,
secret_id: Optional[str] = None,
source_id: Optional[str] = None,
source_type: Optional[str] = None,
workspace_id: Optional[str] = None) -> SourcePostgres
func GetSourcePostgres(ctx *Context, name string, id IDInput, state *SourcePostgresState, opts ...ResourceOption) (*SourcePostgres, error)
public static SourcePostgres Get(string name, Input<string> id, SourcePostgresState? state, CustomResourceOptions? opts = null)
public static SourcePostgres get(String name, Output<String> id, SourcePostgresState state, CustomResourceOptions options)
resources: _: type: airbyte:SourcePostgres 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
Postgres 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.
- Resource
Allocation SourcePostgres 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.
- 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
Postgres 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.
- Resource
Allocation SourcePostgres 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.
- 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
Postgres 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.
- resource
Allocation SourcePostgres 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.
- 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
Postgres 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.
- resource
Allocation SourcePostgres 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.
- 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
Postgres 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.
- resource_
allocation SourcePostgres 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.
- 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.
- 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.
- 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
SourcePostgresConfiguration, SourcePostgresConfigurationArgs
- Database string
- Name of the database.
- Host string
- Hostname of the database.
- Username string
- Username 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 '&'. (Eg. key1=value1&key2=value2&key3=value3). For more information read about \n\nJDBC URL parameters\n\n.
- Password string
- Password associated with the username.
- Port double
- Port of the database. Default: 5432
- Replication
Method SourcePostgres Configuration Replication Method - Configures how data is extracted from the database.
- Schemas List<string>
- The list of schemas (case sensitive) to sync from. Defaults to public.
- Ssl
Mode SourcePostgres Configuration Ssl Mode - SSL connection modes. Read more \n\n in the docs\n\n.
- Tunnel
Method SourcePostgres 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
- Name of the database.
- Host string
- Hostname of the database.
- Username string
- Username 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 '&'. (Eg. key1=value1&key2=value2&key3=value3). For more information read about \n\nJDBC URL parameters\n\n.
- Password string
- Password associated with the username.
- Port float64
- Port of the database. Default: 5432
- Replication
Method SourcePostgres Configuration Replication Method - Configures how data is extracted from the database.
- Schemas []string
- The list of schemas (case sensitive) to sync from. Defaults to public.
- Ssl
Mode SourcePostgres Configuration Ssl Mode - SSL connection modes. Read more \n\n in the docs\n\n.
- Tunnel
Method SourcePostgres 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
- Name of the database.
- host String
- Hostname of the database.
- username String
- Username 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 '&'. (Eg. key1=value1&key2=value2&key3=value3). For more information read about \n\nJDBC URL parameters\n\n.
- password String
- Password associated with the username.
- port Double
- Port of the database. Default: 5432
- replication
Method SourcePostgres Configuration Replication Method - Configures how data is extracted from the database.
- schemas List<String>
- The list of schemas (case sensitive) to sync from. Defaults to public.
- ssl
Mode SourcePostgres Configuration Ssl Mode - SSL connection modes. Read more \n\n in the docs\n\n.
- tunnel
Method SourcePostgres 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
- Name of the database.
- host string
- Hostname of the database.
- username string
- Username 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 '&'. (Eg. key1=value1&key2=value2&key3=value3). For more information read about \n\nJDBC URL parameters\n\n.
- password string
- Password associated with the username.
- port number
- Port of the database. Default: 5432
- replication
Method SourcePostgres Configuration Replication Method - Configures how data is extracted from the database.
- schemas string[]
- The list of schemas (case sensitive) to sync from. Defaults to public.
- ssl
Mode SourcePostgres Configuration Ssl Mode - SSL connection modes. Read more \n\n in the docs\n\n.
- tunnel
Method SourcePostgres 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
- Name of the database.
- host str
- Hostname of the database.
- username str
- Username 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 '&'. (Eg. key1=value1&key2=value2&key3=value3). For more information read about \n\nJDBC URL parameters\n\n.
- password str
- Password associated with the username.
- port float
- Port of the database. Default: 5432
- replication_
method SourcePostgres Configuration Replication Method - Configures how data is extracted from the database.
- schemas Sequence[str]
- The list of schemas (case sensitive) to sync from. Defaults to public.
- ssl_
mode SourcePostgres Configuration Ssl Mode - SSL connection modes. Read more \n\n in the docs\n\n.
- tunnel_
method SourcePostgres 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
- Name of the database.
- host String
- Hostname of the database.
- username String
- Username 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 '&'. (Eg. key1=value1&key2=value2&key3=value3). For more information read about \n\nJDBC URL parameters\n\n.
- password String
- Password associated with the username.
- port Number
- Port of the database. Default: 5432
- replication
Method Property Map - Configures how data is extracted from the database.
- schemas List<String>
- The list of schemas (case sensitive) to sync from. Defaults to public.
- ssl
Mode Property Map - SSL connection modes. Read more \n\n in the docs\n\n.
- tunnel
Method Property Map - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
SourcePostgresConfigurationReplicationMethod, SourcePostgresConfigurationReplicationMethodArgs
- Detect
Changes SourceWith Xmin System Column Postgres Configuration Replication Method Detect Changes With Xmin System Column - \n\nRecommended\n\n - Incrementally reads new inserts and updates via Postgres \n\nXmin system column\n\n. Suitable for databases that have low transaction pressure.
- Read
Changes SourceUsing Write Ahead Log Cdc Postgres Configuration Replication Method Read Changes Using Write Ahead Log Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using the Postgres \n\nwrite-ahead log (WAL)\n\n. This needs to be configured on the source database itself. Recommended for tables of any size.
- Scan
Changes SourceWith User Defined Cursor Postgres 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).
- Detect
Changes SourceWith Xmin System Column Postgres Configuration Replication Method Detect Changes With Xmin System Column - \n\nRecommended\n\n - Incrementally reads new inserts and updates via Postgres \n\nXmin system column\n\n. Suitable for databases that have low transaction pressure.
- Read
Changes SourceUsing Write Ahead Log Cdc Postgres Configuration Replication Method Read Changes Using Write Ahead Log Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using the Postgres \n\nwrite-ahead log (WAL)\n\n. This needs to be configured on the source database itself. Recommended for tables of any size.
- Scan
Changes SourceWith User Defined Cursor Postgres 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).
- detect
Changes SourceWith Xmin System Column Postgres Configuration Replication Method Detect Changes With Xmin System Column - \n\nRecommended\n\n - Incrementally reads new inserts and updates via Postgres \n\nXmin system column\n\n. Suitable for databases that have low transaction pressure.
- read
Changes SourceUsing Write Ahead Log Cdc Postgres Configuration Replication Method Read Changes Using Write Ahead Log Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using the Postgres \n\nwrite-ahead log (WAL)\n\n. This needs to be configured on the source database itself. Recommended for tables of any size.
- scan
Changes SourceWith User Defined Cursor Postgres 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).
- detect
Changes SourceWith Xmin System Column Postgres Configuration Replication Method Detect Changes With Xmin System Column - \n\nRecommended\n\n - Incrementally reads new inserts and updates via Postgres \n\nXmin system column\n\n. Suitable for databases that have low transaction pressure.
- read
Changes SourceUsing Write Ahead Log Cdc Postgres Configuration Replication Method Read Changes Using Write Ahead Log Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using the Postgres \n\nwrite-ahead log (WAL)\n\n. This needs to be configured on the source database itself. Recommended for tables of any size.
- scan
Changes SourceWith User Defined Cursor Postgres 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).
- detect_
changes_ Sourcewith_ xmin_ system_ column Postgres Configuration Replication Method Detect Changes With Xmin System Column - \n\nRecommended\n\n - Incrementally reads new inserts and updates via Postgres \n\nXmin system column\n\n. Suitable for databases that have low transaction pressure.
- read_
changes_ Sourceusing_ write_ ahead_ log_ cdc Postgres Configuration Replication Method Read Changes Using Write Ahead Log Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using the Postgres \n\nwrite-ahead log (WAL)\n\n. This needs to be configured on the source database itself. Recommended for tables of any size.
- scan_
changes_ Sourcewith_ user_ defined_ cursor Postgres 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).
- detect
Changes Property MapWith Xmin System Column - \n\nRecommended\n\n - Incrementally reads new inserts and updates via Postgres \n\nXmin system column\n\n. Suitable for databases that have low transaction pressure.
- read
Changes Property MapUsing Write Ahead Log Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using the Postgres \n\nwrite-ahead log (WAL)\n\n. This needs to be configured on the source database itself. Recommended for tables of any size.
- 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).
SourcePostgresConfigurationReplicationMethodReadChangesUsingWriteAheadLogCdc, SourcePostgresConfigurationReplicationMethodReadChangesUsingWriteAheadLogCdcArgs
- Publication string
- A Postgres publication used for consuming changes. Read about \n\npublications and replication identities\n\n.
- Replication
Slot string - A plugin logical replication slot. Read about \n\nreplication slots\n\n.
- Additional
Properties string - Parsed as JSON.
- Heartbeat
Action stringQuery - Specifies a query that the connector executes on the source database when the connector sends a heartbeat message. Please see the \n\nsetup guide\n\n for how and when to configure this setting. Default: ""
- 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 1200 seconds. Valid range: 120 seconds to 2400 seconds. Read about \n\ninitial waiting time\n\n. Default: 1200
- 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"]
- Lsn
Commit stringBehaviour - Determines when Airbyte should flush the LSN of processed WAL logs in the source database.
After loading Data in the destination
is default. IfWhile reading Data
is selected, in case of a downstream failure (while loading data into the destination), next sync would result in a full sync. Default: "After loading Data in the destination"; must be one of ["While reading Data", "After loading Data in the destination"] - Plugin string
- A logical decoding plugin installed on the PostgreSQL server. Default: "pgoutput"; must be "pgoutput"
- 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
- Publication string
- A Postgres publication used for consuming changes. Read about \n\npublications and replication identities\n\n.
- Replication
Slot string - A plugin logical replication slot. Read about \n\nreplication slots\n\n.
- Additional
Properties string - Parsed as JSON.
- Heartbeat
Action stringQuery - Specifies a query that the connector executes on the source database when the connector sends a heartbeat message. Please see the \n\nsetup guide\n\n for how and when to configure this setting. Default: ""
- 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 1200 seconds. Valid range: 120 seconds to 2400 seconds. Read about \n\ninitial waiting time\n\n. Default: 1200
- 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"]
- Lsn
Commit stringBehaviour - Determines when Airbyte should flush the LSN of processed WAL logs in the source database.
After loading Data in the destination
is default. IfWhile reading Data
is selected, in case of a downstream failure (while loading data into the destination), next sync would result in a full sync. Default: "After loading Data in the destination"; must be one of ["While reading Data", "After loading Data in the destination"] - Plugin string
- A logical decoding plugin installed on the PostgreSQL server. Default: "pgoutput"; must be "pgoutput"
- 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
- publication String
- A Postgres publication used for consuming changes. Read about \n\npublications and replication identities\n\n.
- replication
Slot String - A plugin logical replication slot. Read about \n\nreplication slots\n\n.
- additional
Properties String - Parsed as JSON.
- heartbeat
Action StringQuery - Specifies a query that the connector executes on the source database when the connector sends a heartbeat message. Please see the \n\nsetup guide\n\n for how and when to configure this setting. Default: ""
- 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 1200 seconds. Valid range: 120 seconds to 2400 seconds. Read about \n\ninitial waiting time\n\n. Default: 1200
- 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"]
- lsn
Commit StringBehaviour - Determines when Airbyte should flush the LSN of processed WAL logs in the source database.
After loading Data in the destination
is default. IfWhile reading Data
is selected, in case of a downstream failure (while loading data into the destination), next sync would result in a full sync. Default: "After loading Data in the destination"; must be one of ["While reading Data", "After loading Data in the destination"] - plugin String
- A logical decoding plugin installed on the PostgreSQL server. Default: "pgoutput"; must be "pgoutput"
- 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
- publication string
- A Postgres publication used for consuming changes. Read about \n\npublications and replication identities\n\n.
- replication
Slot string - A plugin logical replication slot. Read about \n\nreplication slots\n\n.
- additional
Properties string - Parsed as JSON.
- heartbeat
Action stringQuery - Specifies a query that the connector executes on the source database when the connector sends a heartbeat message. Please see the \n\nsetup guide\n\n for how and when to configure this setting. Default: ""
- 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 1200 seconds. Valid range: 120 seconds to 2400 seconds. Read about \n\ninitial waiting time\n\n. Default: 1200
- 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"]
- lsn
Commit stringBehaviour - Determines when Airbyte should flush the LSN of processed WAL logs in the source database.
After loading Data in the destination
is default. IfWhile reading Data
is selected, in case of a downstream failure (while loading data into the destination), next sync would result in a full sync. Default: "After loading Data in the destination"; must be one of ["While reading Data", "After loading Data in the destination"] - plugin string
- A logical decoding plugin installed on the PostgreSQL server. Default: "pgoutput"; must be "pgoutput"
- 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
- publication str
- A Postgres publication used for consuming changes. Read about \n\npublications and replication identities\n\n.
- replication_
slot str - A plugin logical replication slot. Read about \n\nreplication slots\n\n.
- additional_
properties str - Parsed as JSON.
- heartbeat_
action_ strquery - Specifies a query that the connector executes on the source database when the connector sends a heartbeat message. Please see the \n\nsetup guide\n\n for how and when to configure this setting. Default: ""
- 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 1200 seconds. Valid range: 120 seconds to 2400 seconds. Read about \n\ninitial waiting time\n\n. Default: 1200
- 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"]
- lsn_
commit_ strbehaviour - Determines when Airbyte should flush the LSN of processed WAL logs in the source database.
After loading Data in the destination
is default. IfWhile reading Data
is selected, in case of a downstream failure (while loading data into the destination), next sync would result in a full sync. Default: "After loading Data in the destination"; must be one of ["While reading Data", "After loading Data in the destination"] - plugin str
- A logical decoding plugin installed on the PostgreSQL server. Default: "pgoutput"; must be "pgoutput"
- 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
- publication String
- A Postgres publication used for consuming changes. Read about \n\npublications and replication identities\n\n.
- replication
Slot String - A plugin logical replication slot. Read about \n\nreplication slots\n\n.
- additional
Properties String - Parsed as JSON.
- heartbeat
Action StringQuery - Specifies a query that the connector executes on the source database when the connector sends a heartbeat message. Please see the \n\nsetup guide\n\n for how and when to configure this setting. Default: ""
- 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 1200 seconds. Valid range: 120 seconds to 2400 seconds. Read about \n\ninitial waiting time\n\n. Default: 1200
- 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"]
- lsn
Commit StringBehaviour - Determines when Airbyte should flush the LSN of processed WAL logs in the source database.
After loading Data in the destination
is default. IfWhile reading Data
is selected, in case of a downstream failure (while loading data into the destination), next sync would result in a full sync. Default: "After loading Data in the destination"; must be one of ["While reading Data", "After loading Data in the destination"] - plugin String
- A logical decoding plugin installed on the PostgreSQL server. Default: "pgoutput"; must be "pgoutput"
- 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
SourcePostgresConfigurationSslMode, SourcePostgresConfigurationSslModeArgs
- Allow
Source
Postgres Configuration Ssl Mode Allow - Enables encryption only when required by the source database.
- Disable
Source
Postgres Configuration Ssl Mode Disable - Disables encryption of communication between Airbyte and source database.
- Prefer
Source
Postgres Configuration Ssl Mode Prefer - Allows unencrypted connection only if the source database does not support encryption.
- Require
Source
Postgres Configuration Ssl Mode Require - Always require encryption. If the source database server does not support encryption, connection will fail.
- Verify
Ca SourcePostgres Configuration Ssl Mode Verify Ca - Always require encryption and verifies that the source database server has a valid SSL certificate.
- Verify
Full SourcePostgres Configuration Ssl Mode Verify Full - This is the most secure mode. Always require encryption and verifies the identity of the source database server.
- Allow
Source
Postgres Configuration Ssl Mode Allow - Enables encryption only when required by the source database.
- Disable
Source
Postgres Configuration Ssl Mode Disable - Disables encryption of communication between Airbyte and source database.
- Prefer
Source
Postgres Configuration Ssl Mode Prefer - Allows unencrypted connection only if the source database does not support encryption.
- Require
Source
Postgres Configuration Ssl Mode Require - Always require encryption. If the source database server does not support encryption, connection will fail.
- Verify
Ca SourcePostgres Configuration Ssl Mode Verify Ca - Always require encryption and verifies that the source database server has a valid SSL certificate.
- Verify
Full SourcePostgres Configuration Ssl Mode Verify Full - This is the most secure mode. Always require encryption and verifies the identity of the source database server.
- allow
Source
Postgres Configuration Ssl Mode Allow - Enables encryption only when required by the source database.
- disable
Source
Postgres Configuration Ssl Mode Disable - Disables encryption of communication between Airbyte and source database.
- prefer
Source
Postgres Configuration Ssl Mode Prefer - Allows unencrypted connection only if the source database does not support encryption.
- require
Source
Postgres Configuration Ssl Mode Require - Always require encryption. If the source database server does not support encryption, connection will fail.
- verify
Ca SourcePostgres Configuration Ssl Mode Verify Ca - Always require encryption and verifies that the source database server has a valid SSL certificate.
- verify
Full SourcePostgres Configuration Ssl Mode Verify Full - This is the most secure mode. Always require encryption and verifies the identity of the source database server.
- allow
Source
Postgres Configuration Ssl Mode Allow - Enables encryption only when required by the source database.
- disable
Source
Postgres Configuration Ssl Mode Disable - Disables encryption of communication between Airbyte and source database.
- prefer
Source
Postgres Configuration Ssl Mode Prefer - Allows unencrypted connection only if the source database does not support encryption.
- require
Source
Postgres Configuration Ssl Mode Require - Always require encryption. If the source database server does not support encryption, connection will fail.
- verify
Ca SourcePostgres Configuration Ssl Mode Verify Ca - Always require encryption and verifies that the source database server has a valid SSL certificate.
- verify
Full SourcePostgres Configuration Ssl Mode Verify Full - This is the most secure mode. Always require encryption and verifies the identity of the source database server.
- allow
Source
Postgres Configuration Ssl Mode Allow - Enables encryption only when required by the source database.
- disable
Source
Postgres Configuration Ssl Mode Disable - Disables encryption of communication between Airbyte and source database.
- prefer
Source
Postgres Configuration Ssl Mode Prefer - Allows unencrypted connection only if the source database does not support encryption.
- require
Source
Postgres Configuration Ssl Mode Require - Always require encryption. If the source database server does not support encryption, connection will fail.
- verify_
ca SourcePostgres Configuration Ssl Mode Verify Ca - Always require encryption and verifies that the source database server has a valid SSL certificate.
- verify_
full SourcePostgres Configuration Ssl Mode Verify Full - This is the most secure mode. Always require encryption and verifies the identity of the source database server.
- allow Property Map
- Enables encryption only when required by the source database.
- disable Property Map
- Disables encryption of communication between Airbyte and source database.
- prefer Property Map
- Allows unencrypted connection only if the source database does not support encryption.
- require Property Map
- Always require encryption. If the source database server does not support encryption, connection will fail.
- verify
Ca Property Map - Always require encryption and verifies that the source database server has a valid SSL certificate.
- verify
Full Property Map - This is the most secure mode. Always require encryption and verifies the identity of the source database server.
SourcePostgresConfigurationSslModeAllow, SourcePostgresConfigurationSslModeAllowArgs
- Additional
Properties string - Parsed as JSON.
- Additional
Properties string - Parsed as JSON.
- additional
Properties String - Parsed as JSON.
- additional
Properties string - Parsed as JSON.
- additional_
properties str - Parsed as JSON.
- additional
Properties String - Parsed as JSON.
SourcePostgresConfigurationSslModeDisable, SourcePostgresConfigurationSslModeDisableArgs
- Additional
Properties string - Parsed as JSON.
- Additional
Properties string - Parsed as JSON.
- additional
Properties String - Parsed as JSON.
- additional
Properties string - Parsed as JSON.
- additional_
properties str - Parsed as JSON.
- additional
Properties String - Parsed as JSON.
SourcePostgresConfigurationSslModePrefer, SourcePostgresConfigurationSslModePreferArgs
- Additional
Properties string - Parsed as JSON.
- Additional
Properties string - Parsed as JSON.
- additional
Properties String - Parsed as JSON.
- additional
Properties string - Parsed as JSON.
- additional_
properties str - Parsed as JSON.
- additional
Properties String - Parsed as JSON.
SourcePostgresConfigurationSslModeRequire, SourcePostgresConfigurationSslModeRequireArgs
- Additional
Properties string - Parsed as JSON.
- Additional
Properties string - Parsed as JSON.
- additional
Properties String - Parsed as JSON.
- additional
Properties string - Parsed as JSON.
- additional_
properties str - Parsed as JSON.
- additional
Properties String - Parsed as JSON.
SourcePostgresConfigurationSslModeVerifyCa, SourcePostgresConfigurationSslModeVerifyCaArgs
- Ca
Certificate string - CA certificate
- Additional
Properties string - Parsed as JSON.
- Client
Certificate string - Client certificate
- Client
Key string - Client key
- Client
Key stringPassword - Password for keystorage. If you do not add it - the password will be generated automatically.
- Ca
Certificate string - CA certificate
- Additional
Properties string - Parsed as JSON.
- Client
Certificate string - Client certificate
- Client
Key string - Client key
- Client
Key stringPassword - Password for keystorage. If you do not add it - the password will be generated automatically.
- ca
Certificate String - CA certificate
- additional
Properties String - Parsed as JSON.
- client
Certificate String - Client certificate
- client
Key String - Client key
- client
Key StringPassword - Password for keystorage. If you do not add it - the password will be generated automatically.
- ca
Certificate string - CA certificate
- additional
Properties string - Parsed as JSON.
- client
Certificate string - Client certificate
- client
Key string - Client key
- client
Key stringPassword - Password for keystorage. If you do not add it - the password will be generated automatically.
- ca_
certificate str - CA certificate
- additional_
properties str - Parsed as JSON.
- client_
certificate str - Client certificate
- client_
key str - Client key
- client_
key_ strpassword - Password for keystorage. If you do not add it - the password will be generated automatically.
- ca
Certificate String - CA certificate
- additional
Properties String - Parsed as JSON.
- client
Certificate String - Client certificate
- client
Key String - Client key
- client
Key StringPassword - Password for keystorage. If you do not add it - the password will be generated automatically.
SourcePostgresConfigurationSslModeVerifyFull, SourcePostgresConfigurationSslModeVerifyFullArgs
- Ca
Certificate string - CA certificate
- Additional
Properties string - Parsed as JSON.
- Client
Certificate string - Client certificate
- Client
Key string - Client key
- Client
Key stringPassword - Password for keystorage. If you do not add it - the password will be generated automatically.
- Ca
Certificate string - CA certificate
- Additional
Properties string - Parsed as JSON.
- Client
Certificate string - Client certificate
- Client
Key string - Client key
- Client
Key stringPassword - Password for keystorage. If you do not add it - the password will be generated automatically.
- ca
Certificate String - CA certificate
- additional
Properties String - Parsed as JSON.
- client
Certificate String - Client certificate
- client
Key String - Client key
- client
Key StringPassword - Password for keystorage. If you do not add it - the password will be generated automatically.
- ca
Certificate string - CA certificate
- additional
Properties string - Parsed as JSON.
- client
Certificate string - Client certificate
- client
Key string - Client key
- client
Key stringPassword - Password for keystorage. If you do not add it - the password will be generated automatically.
- ca_
certificate str - CA certificate
- additional_
properties str - Parsed as JSON.
- client_
certificate str - Client certificate
- client_
key str - Client key
- client_
key_ strpassword - Password for keystorage. If you do not add it - the password will be generated automatically.
- ca
Certificate String - CA certificate
- additional
Properties String - Parsed as JSON.
- client
Certificate String - Client certificate
- client
Key String - Client key
- client
Key StringPassword - Password for keystorage. If you do not add it - the password will be generated automatically.
SourcePostgresConfigurationTunnelMethod, SourcePostgresConfigurationTunnelMethodArgs
SourcePostgresConfigurationTunnelMethodPasswordAuthentication, SourcePostgresConfigurationTunnelMethodPasswordAuthenticationArgs
- 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
SourcePostgresConfigurationTunnelMethodSshKeyAuthentication, SourcePostgresConfigurationTunnelMethodSshKeyAuthenticationArgs
- 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
SourcePostgresResourceAllocation, SourcePostgresResourceAllocationArgs
- Default
Source
Postgres Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<SourcePostgres Resource Allocation Job Specific>
- Default
Source
Postgres Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []SourcePostgres Resource Allocation Job Specific
- default_
Source
Postgres Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<SourcePostgres Resource Allocation Job Specific>
- default
Source
Postgres Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics SourcePostgres Resource Allocation Job Specific[]
- default
Source
Postgres Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[SourcePostgres Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
SourcePostgresResourceAllocationDefault, SourcePostgresResourceAllocationDefaultArgs
- 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
SourcePostgresResourceAllocationJobSpecific, SourcePostgresResourceAllocationJobSpecificArgs
- Job
Type 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"]
- Resource
Requirements SourcePostgres 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. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- Resource
Requirements SourcePostgres 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. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements SourcePostgres 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. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements SourcePostgres 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. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource_
requirements SourcePostgres 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. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements Property Map - optional resource requirements to run workers (blank for unbounded allocations)
SourcePostgresResourceAllocationJobSpecificResourceRequirements, SourcePostgresResourceAllocationJobSpecificResourceRequirementsArgs
- 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
$ pulumi import airbyte:index/sourcePostgres:SourcePostgres my_airbyte_source_postgres ""
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.