airbyte.DestinationPostgres
Explore with Pulumi AI
DestinationPostgres 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.DestinationPostgres;
import com.pulumi.airbyte.DestinationPostgresArgs;
import com.pulumi.airbyte.inputs.DestinationPostgresConfigurationArgs;
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 myDestinationPostgres = new DestinationPostgres("myDestinationPostgres", DestinationPostgresArgs.builder()
.configuration(DestinationPostgresConfigurationArgs.builder()
.database("...my_database...")
.disable_type_dedupe(true)
.drop_cascade(false)
.host("...my_host...")
.jdbc_url_params("...my_jdbc_url_params...")
.password("...my_password...")
.port(5432)
.raw_data_schema("...my_raw_data_schema...")
.schema("public")
.ssl(true)
.ssl_mode(%!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))
.unconstrained_number(false)
.username("...my_username...")
.build())
.definitionId("6cc561e7-8b38-4621-919b-0687fe3682b7")
.workspaceId("2b2d880a-23fd-4463-8627-0a837b28bb7e")
.build());
}
}
resources:
myDestinationPostgres:
type: airbyte:DestinationPostgres
properties:
configuration:
database: '...my_database...'
disable_type_dedupe: true
drop_cascade: false
host: '...my_host...'
jdbc_url_params: '...my_jdbc_url_params...'
password: '...my_password...'
port: 5432
raw_data_schema: '...my_raw_data_schema...'
schema: public
ssl: true
ssl_mode:
verifyCa:
caCertificate: '...my_ca_certificate...'
clientKeyPassword: '...my_client_key_password...'
tunnel_method:
passwordAuthentication:
tunnelHost: '...my_tunnel_host...'
tunnelPort: 22
tunnelUser: '...my_tunnel_user...'
tunnelUserPassword: '...my_tunnel_user_password...'
unconstrained_number: false
username: '...my_username...'
definitionId: 6cc561e7-8b38-4621-919b-0687fe3682b7
workspaceId: 2b2d880a-23fd-4463-8627-0a837b28bb7e
Create DestinationPostgres Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DestinationPostgres(name: string, args: DestinationPostgresArgs, opts?: CustomResourceOptions);
@overload
def DestinationPostgres(resource_name: str,
args: DestinationPostgresArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DestinationPostgres(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[DestinationPostgresConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None)
func NewDestinationPostgres(ctx *Context, name string, args DestinationPostgresArgs, opts ...ResourceOption) (*DestinationPostgres, error)
public DestinationPostgres(string name, DestinationPostgresArgs args, CustomResourceOptions? opts = null)
public DestinationPostgres(String name, DestinationPostgresArgs args)
public DestinationPostgres(String name, DestinationPostgresArgs args, CustomResourceOptions options)
type: airbyte:DestinationPostgres
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 DestinationPostgresArgs
- 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 DestinationPostgresArgs
- 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 DestinationPostgresArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DestinationPostgresArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DestinationPostgresArgs
- 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 destinationPostgresResource = new Airbyte.DestinationPostgres("destinationPostgresResource", new()
{
Configuration = new Airbyte.Inputs.DestinationPostgresConfigurationArgs
{
Host = "string",
Username = "string",
Database = "string",
Port = 0,
JdbcUrlParams = "string",
Password = "string",
DropCascade = false,
RawDataSchema = "string",
Schema = "string",
Ssl = false,
SslMode = new Airbyte.Inputs.DestinationPostgresConfigurationSslModeArgs
{
Allow = null,
Disable = null,
Prefer = null,
Require = null,
VerifyCa = new Airbyte.Inputs.DestinationPostgresConfigurationSslModeVerifyCaArgs
{
CaCertificate = "string",
ClientKeyPassword = "string",
},
VerifyFull = new Airbyte.Inputs.DestinationPostgresConfigurationSslModeVerifyFullArgs
{
CaCertificate = "string",
ClientCertificate = "string",
ClientKey = "string",
ClientKeyPassword = "string",
},
},
TunnelMethod = new Airbyte.Inputs.DestinationPostgresConfigurationTunnelMethodArgs
{
NoTunnel = null,
PasswordAuthentication = new Airbyte.Inputs.DestinationPostgresConfigurationTunnelMethodPasswordAuthenticationArgs
{
TunnelHost = "string",
TunnelUser = "string",
TunnelUserPassword = "string",
TunnelPort = 0,
},
SshKeyAuthentication = new Airbyte.Inputs.DestinationPostgresConfigurationTunnelMethodSshKeyAuthenticationArgs
{
SshKey = "string",
TunnelHost = "string",
TunnelUser = "string",
TunnelPort = 0,
},
},
UnconstrainedNumber = false,
DisableTypeDedupe = false,
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
});
example, err := airbyte.NewDestinationPostgres(ctx, "destinationPostgresResource", &airbyte.DestinationPostgresArgs{
Configuration: &.DestinationPostgresConfigurationArgs{
Host: pulumi.String("string"),
Username: pulumi.String("string"),
Database: pulumi.String("string"),
Port: pulumi.Float64(0),
JdbcUrlParams: pulumi.String("string"),
Password: pulumi.String("string"),
DropCascade: pulumi.Bool(false),
RawDataSchema: pulumi.String("string"),
Schema: pulumi.String("string"),
Ssl: pulumi.Bool(false),
SslMode: &.DestinationPostgresConfigurationSslModeArgs{
Allow: &.DestinationPostgresConfigurationSslModeAllowArgs{
},
Disable: &.DestinationPostgresConfigurationSslModeDisableArgs{
},
Prefer: &.DestinationPostgresConfigurationSslModePreferArgs{
},
Require: &.DestinationPostgresConfigurationSslModeRequireArgs{
},
VerifyCa: &.DestinationPostgresConfigurationSslModeVerifyCaArgs{
CaCertificate: pulumi.String("string"),
ClientKeyPassword: pulumi.String("string"),
},
VerifyFull: &.DestinationPostgresConfigurationSslModeVerifyFullArgs{
CaCertificate: pulumi.String("string"),
ClientCertificate: pulumi.String("string"),
ClientKey: pulumi.String("string"),
ClientKeyPassword: pulumi.String("string"),
},
},
TunnelMethod: &.DestinationPostgresConfigurationTunnelMethodArgs{
NoTunnel: &.DestinationPostgresConfigurationTunnelMethodNoTunnelArgs{
},
PasswordAuthentication: &.DestinationPostgresConfigurationTunnelMethodPasswordAuthenticationArgs{
TunnelHost: pulumi.String("string"),
TunnelUser: pulumi.String("string"),
TunnelUserPassword: pulumi.String("string"),
TunnelPort: pulumi.Float64(0),
},
SshKeyAuthentication: &.DestinationPostgresConfigurationTunnelMethodSshKeyAuthenticationArgs{
SshKey: pulumi.String("string"),
TunnelHost: pulumi.String("string"),
TunnelUser: pulumi.String("string"),
TunnelPort: pulumi.Float64(0),
},
},
UnconstrainedNumber: pulumi.Bool(false),
DisableTypeDedupe: pulumi.Bool(false),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
})
var destinationPostgresResource = new DestinationPostgres("destinationPostgresResource", DestinationPostgresArgs.builder()
.configuration(DestinationPostgresConfigurationArgs.builder()
.host("string")
.username("string")
.database("string")
.port(0)
.jdbcUrlParams("string")
.password("string")
.dropCascade(false)
.rawDataSchema("string")
.schema("string")
.ssl(false)
.sslMode(DestinationPostgresConfigurationSslModeArgs.builder()
.allow()
.disable()
.prefer()
.require()
.verifyCa(DestinationPostgresConfigurationSslModeVerifyCaArgs.builder()
.caCertificate("string")
.clientKeyPassword("string")
.build())
.verifyFull(DestinationPostgresConfigurationSslModeVerifyFullArgs.builder()
.caCertificate("string")
.clientCertificate("string")
.clientKey("string")
.clientKeyPassword("string")
.build())
.build())
.tunnelMethod(DestinationPostgresConfigurationTunnelMethodArgs.builder()
.noTunnel()
.passwordAuthentication(DestinationPostgresConfigurationTunnelMethodPasswordAuthenticationArgs.builder()
.tunnelHost("string")
.tunnelUser("string")
.tunnelUserPassword("string")
.tunnelPort(0)
.build())
.sshKeyAuthentication(DestinationPostgresConfigurationTunnelMethodSshKeyAuthenticationArgs.builder()
.sshKey("string")
.tunnelHost("string")
.tunnelUser("string")
.tunnelPort(0)
.build())
.build())
.unconstrainedNumber(false)
.disableTypeDedupe(false)
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.build());
destination_postgres_resource = airbyte.DestinationPostgres("destinationPostgresResource",
configuration={
"host": "string",
"username": "string",
"database": "string",
"port": 0,
"jdbc_url_params": "string",
"password": "string",
"drop_cascade": False,
"raw_data_schema": "string",
"schema": "string",
"ssl": False,
"ssl_mode": {
"allow": {},
"disable": {},
"prefer": {},
"require": {},
"verify_ca": {
"ca_certificate": "string",
"client_key_password": "string",
},
"verify_full": {
"ca_certificate": "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,
},
},
"unconstrained_number": False,
"disable_type_dedupe": False,
},
workspace_id="string",
definition_id="string",
name="string")
const destinationPostgresResource = new airbyte.DestinationPostgres("destinationPostgresResource", {
configuration: {
host: "string",
username: "string",
database: "string",
port: 0,
jdbcUrlParams: "string",
password: "string",
dropCascade: false,
rawDataSchema: "string",
schema: "string",
ssl: false,
sslMode: {
allow: {},
disable: {},
prefer: {},
require: {},
verifyCa: {
caCertificate: "string",
clientKeyPassword: "string",
},
verifyFull: {
caCertificate: "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,
},
},
unconstrainedNumber: false,
disableTypeDedupe: false,
},
workspaceId: "string",
definitionId: "string",
name: "string",
});
type: airbyte:DestinationPostgres
properties:
configuration:
database: string
disableTypeDedupe: false
dropCascade: false
host: string
jdbcUrlParams: string
password: string
port: 0
rawDataSchema: string
schema: string
ssl: false
sslMode:
allow: {}
disable: {}
prefer: {}
require: {}
verifyCa:
caCertificate: string
clientKeyPassword: string
verifyFull:
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
unconstrainedNumber: false
username: string
definitionId: string
name: string
workspaceId: string
DestinationPostgres 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 DestinationPostgres resource accepts the following input properties:
- Configuration
Destination
Postgres Configuration - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the destination e.g. dev-mysql-instance.
- Configuration
Destination
Postgres Configuration Args - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the destination e.g. dev-mysql-instance.
- configuration
Destination
Postgres Configuration - workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the destination e.g. dev-mysql-instance.
- configuration
Destination
Postgres Configuration - workspace
Id string - definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the destination e.g. dev-mysql-instance.
- configuration
Destination
Postgres Configuration Args - workspace_
id str - definition_
id str - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the destination e.g. dev-mysql-instance.
- configuration Property Map
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the destination e.g. dev-mysql-instance.
Outputs
All input properties are implicitly available as output properties. Additionally, the DestinationPostgres resource produces the following output properties:
- Created
At double - Destination
Id string - Destination
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation DestinationPostgres Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Created
At float64 - Destination
Id string - Destination
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation DestinationPostgres Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- created
At Double - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation DestinationPostgres Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- created
At number - destination
Id string - destination
Type string - id string
- The provider-assigned unique ID for this managed resource.
- resource
Allocation DestinationPostgres Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- created_
at float - destination_
id str - destination_
type str - id str
- The provider-assigned unique ID for this managed resource.
- resource_
allocation DestinationPostgres Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- created
At Number - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation Property Map - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
Look up Existing DestinationPostgres Resource
Get an existing DestinationPostgres 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?: DestinationPostgresState, opts?: CustomResourceOptions): DestinationPostgres
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[DestinationPostgresConfigurationArgs] = None,
created_at: Optional[float] = None,
definition_id: Optional[str] = None,
destination_id: Optional[str] = None,
destination_type: Optional[str] = None,
name: Optional[str] = None,
resource_allocation: Optional[DestinationPostgresResourceAllocationArgs] = None,
workspace_id: Optional[str] = None) -> DestinationPostgres
func GetDestinationPostgres(ctx *Context, name string, id IDInput, state *DestinationPostgresState, opts ...ResourceOption) (*DestinationPostgres, error)
public static DestinationPostgres Get(string name, Input<string> id, DestinationPostgresState? state, CustomResourceOptions? opts = null)
public static DestinationPostgres get(String name, Output<String> id, DestinationPostgresState state, CustomResourceOptions options)
resources: _: type: airbyte:DestinationPostgres get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Configuration
Destination
Postgres Configuration - Created
At double - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- Destination
Id string - Destination
Type string - Name string
- Name of the destination e.g. dev-mysql-instance.
- Resource
Allocation DestinationPostgres Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Workspace
Id string
- Configuration
Destination
Postgres Configuration Args - Created
At float64 - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- Destination
Id string - Destination
Type string - Name string
- Name of the destination e.g. dev-mysql-instance.
- Resource
Allocation DestinationPostgres Resource Allocation Args - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Workspace
Id string
- configuration
Destination
Postgres Configuration - created
At Double - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id String - destination
Type String - name String
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation DestinationPostgres Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- workspace
Id String
- configuration
Destination
Postgres Configuration - created
At number - definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id string - destination
Type string - name string
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation DestinationPostgres Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- workspace
Id string
- configuration
Destination
Postgres Configuration Args - created_
at float - definition_
id str - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination_
id str - destination_
type str - name str
- Name of the destination e.g. dev-mysql-instance.
- resource_
allocation DestinationPostgres Resource Allocation Args - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- workspace_
id str
- configuration Property Map
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id String - destination
Type String - name String
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation Property Map - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- workspace
Id String
Supporting Types
DestinationPostgresConfiguration, DestinationPostgresConfigurationArgs
- Database string
- Name of the database.
- Host string
- Hostname of the database.
- Username string
- Username to use to access the database.
- Disable
Type boolDedupe - Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
- Drop
Cascade bool - Drop tables with CASCADE. WARNING! This will delete all data in all dependent objects (views, etc.). Use with caution. This option is intended for usecases which can easily rebuild the dependent objects. Default: false
- Jdbc
Url stringParams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- Password string
- Password associated with the username.
- Port double
- Port of the database. Default: 5432
- Raw
Data stringSchema - The schema to write raw tables into
- Schema string
- The default schema tables are written to if the source does not specify a namespace. The usual value for this field is "public". Default: "public"
- Ssl bool
- Encrypt data using SSL. When activating SSL, please select one of the connection modes. Default: false
- Ssl
Mode DestinationPostgres Configuration Ssl Mode - SSL connection modes. \n\ndisable\n\n - Chose this mode to disable encryption of communication between Airbyte and destination database \n\nallow\n\n - Chose this mode to enable encryption only when required by the source database \n\nprefer\n\n - Chose this mode to allow unencrypted connection only if the source database does not support encryption \n\nrequire\n\n - Chose this mode to always require encryption. If the source database server does not support encryption, connection will fail \n\nverify-ca\n\n - Chose this mode to always require encryption and to verify that the source database server has a valid SSL certificate \n\nverify-full\n\n - This is the most secure mode. Chose this mode to always require encryption and to verify the identity of the source database server See more information - \n\n in the docs\n\n.
- Tunnel
Method DestinationPostgres Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- Unconstrained
Number bool - Create numeric columns as unconstrained DECIMAL instead of NUMBER(38, 9). This will allow increased precision in numeric values. (this is disabled by default for backwards compatibility, but is recommended to enable). Default: false
- Database string
- Name of the database.
- Host string
- Hostname of the database.
- Username string
- Username to use to access the database.
- Disable
Type boolDedupe - Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
- Drop
Cascade bool - Drop tables with CASCADE. WARNING! This will delete all data in all dependent objects (views, etc.). Use with caution. This option is intended for usecases which can easily rebuild the dependent objects. Default: false
- Jdbc
Url stringParams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- Password string
- Password associated with the username.
- Port float64
- Port of the database. Default: 5432
- Raw
Data stringSchema - The schema to write raw tables into
- Schema string
- The default schema tables are written to if the source does not specify a namespace. The usual value for this field is "public". Default: "public"
- Ssl bool
- Encrypt data using SSL. When activating SSL, please select one of the connection modes. Default: false
- Ssl
Mode DestinationPostgres Configuration Ssl Mode - SSL connection modes. \n\ndisable\n\n - Chose this mode to disable encryption of communication between Airbyte and destination database \n\nallow\n\n - Chose this mode to enable encryption only when required by the source database \n\nprefer\n\n - Chose this mode to allow unencrypted connection only if the source database does not support encryption \n\nrequire\n\n - Chose this mode to always require encryption. If the source database server does not support encryption, connection will fail \n\nverify-ca\n\n - Chose this mode to always require encryption and to verify that the source database server has a valid SSL certificate \n\nverify-full\n\n - This is the most secure mode. Chose this mode to always require encryption and to verify the identity of the source database server See more information - \n\n in the docs\n\n.
- Tunnel
Method DestinationPostgres Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- Unconstrained
Number bool - Create numeric columns as unconstrained DECIMAL instead of NUMBER(38, 9). This will allow increased precision in numeric values. (this is disabled by default for backwards compatibility, but is recommended to enable). Default: false
- database String
- Name of the database.
- host String
- Hostname of the database.
- username String
- Username to use to access the database.
- disable
Type BooleanDedupe - Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
- drop
Cascade Boolean - Drop tables with CASCADE. WARNING! This will delete all data in all dependent objects (views, etc.). Use with caution. This option is intended for usecases which can easily rebuild the dependent objects. Default: false
- jdbc
Url StringParams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- password String
- Password associated with the username.
- port Double
- Port of the database. Default: 5432
- raw
Data StringSchema - The schema to write raw tables into
- schema String
- The default schema tables are written to if the source does not specify a namespace. The usual value for this field is "public". Default: "public"
- ssl Boolean
- Encrypt data using SSL. When activating SSL, please select one of the connection modes. Default: false
- ssl
Mode DestinationPostgres Configuration Ssl Mode - SSL connection modes. \n\ndisable\n\n - Chose this mode to disable encryption of communication between Airbyte and destination database \n\nallow\n\n - Chose this mode to enable encryption only when required by the source database \n\nprefer\n\n - Chose this mode to allow unencrypted connection only if the source database does not support encryption \n\nrequire\n\n - Chose this mode to always require encryption. If the source database server does not support encryption, connection will fail \n\nverify-ca\n\n - Chose this mode to always require encryption and to verify that the source database server has a valid SSL certificate \n\nverify-full\n\n - This is the most secure mode. Chose this mode to always require encryption and to verify the identity of the source database server See more information - \n\n in the docs\n\n.
- tunnel
Method DestinationPostgres Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- unconstrained
Number Boolean - Create numeric columns as unconstrained DECIMAL instead of NUMBER(38, 9). This will allow increased precision in numeric values. (this is disabled by default for backwards compatibility, but is recommended to enable). Default: false
- database string
- Name of the database.
- host string
- Hostname of the database.
- username string
- Username to use to access the database.
- disable
Type booleanDedupe - Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
- drop
Cascade boolean - Drop tables with CASCADE. WARNING! This will delete all data in all dependent objects (views, etc.). Use with caution. This option is intended for usecases which can easily rebuild the dependent objects. Default: false
- jdbc
Url stringParams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- password string
- Password associated with the username.
- port number
- Port of the database. Default: 5432
- raw
Data stringSchema - The schema to write raw tables into
- schema string
- The default schema tables are written to if the source does not specify a namespace. The usual value for this field is "public". Default: "public"
- ssl boolean
- Encrypt data using SSL. When activating SSL, please select one of the connection modes. Default: false
- ssl
Mode DestinationPostgres Configuration Ssl Mode - SSL connection modes. \n\ndisable\n\n - Chose this mode to disable encryption of communication between Airbyte and destination database \n\nallow\n\n - Chose this mode to enable encryption only when required by the source database \n\nprefer\n\n - Chose this mode to allow unencrypted connection only if the source database does not support encryption \n\nrequire\n\n - Chose this mode to always require encryption. If the source database server does not support encryption, connection will fail \n\nverify-ca\n\n - Chose this mode to always require encryption and to verify that the source database server has a valid SSL certificate \n\nverify-full\n\n - This is the most secure mode. Chose this mode to always require encryption and to verify the identity of the source database server See more information - \n\n in the docs\n\n.
- tunnel
Method DestinationPostgres Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- unconstrained
Number boolean - Create numeric columns as unconstrained DECIMAL instead of NUMBER(38, 9). This will allow increased precision in numeric values. (this is disabled by default for backwards compatibility, but is recommended to enable). Default: false
- database str
- Name of the database.
- host str
- Hostname of the database.
- username str
- Username to use to access the database.
- disable_
type_ booldedupe - Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
- drop_
cascade bool - Drop tables with CASCADE. WARNING! This will delete all data in all dependent objects (views, etc.). Use with caution. This option is intended for usecases which can easily rebuild the dependent objects. Default: false
- jdbc_
url_ strparams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- password str
- Password associated with the username.
- port float
- Port of the database. Default: 5432
- raw_
data_ strschema - The schema to write raw tables into
- schema str
- The default schema tables are written to if the source does not specify a namespace. The usual value for this field is "public". Default: "public"
- ssl bool
- Encrypt data using SSL. When activating SSL, please select one of the connection modes. Default: false
- ssl_
mode DestinationPostgres Configuration Ssl Mode - SSL connection modes. \n\ndisable\n\n - Chose this mode to disable encryption of communication between Airbyte and destination database \n\nallow\n\n - Chose this mode to enable encryption only when required by the source database \n\nprefer\n\n - Chose this mode to allow unencrypted connection only if the source database does not support encryption \n\nrequire\n\n - Chose this mode to always require encryption. If the source database server does not support encryption, connection will fail \n\nverify-ca\n\n - Chose this mode to always require encryption and to verify that the source database server has a valid SSL certificate \n\nverify-full\n\n - This is the most secure mode. Chose this mode to always require encryption and to verify the identity of the source database server See more information - \n\n in the docs\n\n.
- tunnel_
method DestinationPostgres Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- unconstrained_
number bool - Create numeric columns as unconstrained DECIMAL instead of NUMBER(38, 9). This will allow increased precision in numeric values. (this is disabled by default for backwards compatibility, but is recommended to enable). Default: false
- database String
- Name of the database.
- host String
- Hostname of the database.
- username String
- Username to use to access the database.
- disable
Type BooleanDedupe - Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
- drop
Cascade Boolean - Drop tables with CASCADE. WARNING! This will delete all data in all dependent objects (views, etc.). Use with caution. This option is intended for usecases which can easily rebuild the dependent objects. Default: false
- jdbc
Url StringParams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- password String
- Password associated with the username.
- port Number
- Port of the database. Default: 5432
- raw
Data StringSchema - The schema to write raw tables into
- schema String
- The default schema tables are written to if the source does not specify a namespace. The usual value for this field is "public". Default: "public"
- ssl Boolean
- Encrypt data using SSL. When activating SSL, please select one of the connection modes. Default: false
- ssl
Mode Property Map - SSL connection modes. \n\ndisable\n\n - Chose this mode to disable encryption of communication between Airbyte and destination database \n\nallow\n\n - Chose this mode to enable encryption only when required by the source database \n\nprefer\n\n - Chose this mode to allow unencrypted connection only if the source database does not support encryption \n\nrequire\n\n - Chose this mode to always require encryption. If the source database server does not support encryption, connection will fail \n\nverify-ca\n\n - Chose this mode to always require encryption and to verify that the source database server has a valid SSL certificate \n\nverify-full\n\n - This is the most secure mode. Chose this mode to always require encryption and to verify the identity of the source database server See more information - \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.
- unconstrained
Number Boolean - Create numeric columns as unconstrained DECIMAL instead of NUMBER(38, 9). This will allow increased precision in numeric values. (this is disabled by default for backwards compatibility, but is recommended to enable). Default: false
DestinationPostgresConfigurationSslMode, DestinationPostgresConfigurationSslModeArgs
- Allow
Destination
Postgres Configuration Ssl Mode Allow - Allow SSL mode.
- Disable
Destination
Postgres Configuration Ssl Mode Disable - Disable SSL.
- Prefer
Destination
Postgres Configuration Ssl Mode Prefer - Prefer SSL mode.
- Require
Destination
Postgres Configuration Ssl Mode Require - Require SSL mode.
- Verify
Ca DestinationPostgres Configuration Ssl Mode Verify Ca - Verify-ca SSL mode.
- Verify
Full DestinationPostgres Configuration Ssl Mode Verify Full - Verify-full SSL mode.
- Allow
Destination
Postgres Configuration Ssl Mode Allow - Allow SSL mode.
- Disable
Destination
Postgres Configuration Ssl Mode Disable - Disable SSL.
- Prefer
Destination
Postgres Configuration Ssl Mode Prefer - Prefer SSL mode.
- Require
Destination
Postgres Configuration Ssl Mode Require - Require SSL mode.
- Verify
Ca DestinationPostgres Configuration Ssl Mode Verify Ca - Verify-ca SSL mode.
- Verify
Full DestinationPostgres Configuration Ssl Mode Verify Full - Verify-full SSL mode.
- allow
Destination
Postgres Configuration Ssl Mode Allow - Allow SSL mode.
- disable
Destination
Postgres Configuration Ssl Mode Disable - Disable SSL.
- prefer
Destination
Postgres Configuration Ssl Mode Prefer - Prefer SSL mode.
- require
Destination
Postgres Configuration Ssl Mode Require - Require SSL mode.
- verify
Ca DestinationPostgres Configuration Ssl Mode Verify Ca - Verify-ca SSL mode.
- verify
Full DestinationPostgres Configuration Ssl Mode Verify Full - Verify-full SSL mode.
- allow
Destination
Postgres Configuration Ssl Mode Allow - Allow SSL mode.
- disable
Destination
Postgres Configuration Ssl Mode Disable - Disable SSL.
- prefer
Destination
Postgres Configuration Ssl Mode Prefer - Prefer SSL mode.
- require
Destination
Postgres Configuration Ssl Mode Require - Require SSL mode.
- verify
Ca DestinationPostgres Configuration Ssl Mode Verify Ca - Verify-ca SSL mode.
- verify
Full DestinationPostgres Configuration Ssl Mode Verify Full - Verify-full SSL mode.
- allow
Destination
Postgres Configuration Ssl Mode Allow - Allow SSL mode.
- disable
Destination
Postgres Configuration Ssl Mode Disable - Disable SSL.
- prefer
Destination
Postgres Configuration Ssl Mode Prefer - Prefer SSL mode.
- require
Destination
Postgres Configuration Ssl Mode Require - Require SSL mode.
- verify_
ca DestinationPostgres Configuration Ssl Mode Verify Ca - Verify-ca SSL mode.
- verify_
full DestinationPostgres Configuration Ssl Mode Verify Full - Verify-full SSL mode.
- allow Property Map
- Allow SSL mode.
- disable Property Map
- Disable SSL.
- prefer Property Map
- Prefer SSL mode.
- require Property Map
- Require SSL mode.
- verify
Ca Property Map - Verify-ca SSL mode.
- verify
Full Property Map - Verify-full SSL mode.
DestinationPostgresConfigurationSslModeVerifyCa, DestinationPostgresConfigurationSslModeVerifyCaArgs
- Ca
Certificate string - CA certificate
- Client
Key stringPassword - Password for keystorage. This field is optional. If you do not add it - the password will be generated automatically.
- Ca
Certificate string - CA certificate
- Client
Key stringPassword - Password for keystorage. This field is optional. If you do not add it - the password will be generated automatically.
- ca
Certificate String - CA certificate
- client
Key StringPassword - Password for keystorage. This field is optional. If you do not add it - the password will be generated automatically.
- ca
Certificate string - CA certificate
- client
Key stringPassword - Password for keystorage. This field is optional. If you do not add it - the password will be generated automatically.
- ca_
certificate str - CA certificate
- client_
key_ strpassword - Password for keystorage. This field is optional. If you do not add it - the password will be generated automatically.
- ca
Certificate String - CA certificate
- client
Key StringPassword - Password for keystorage. This field is optional. If you do not add it - the password will be generated automatically.
DestinationPostgresConfigurationSslModeVerifyFull, DestinationPostgresConfigurationSslModeVerifyFullArgs
- Ca
Certificate string - CA certificate
- Client
Certificate string - Client certificate
- Client
Key string - Client key
- Client
Key stringPassword - Password for keystorage. This field is optional. If you do not add it - the password will be generated automatically.
- Ca
Certificate string - CA certificate
- Client
Certificate string - Client certificate
- Client
Key string - Client key
- Client
Key stringPassword - Password for keystorage. This field is optional. If you do not add it - the password will be generated automatically.
- ca
Certificate String - CA certificate
- client
Certificate String - Client certificate
- client
Key String - Client key
- client
Key StringPassword - Password for keystorage. This field is optional. If you do not add it - the password will be generated automatically.
- ca
Certificate string - CA certificate
- client
Certificate string - Client certificate
- client
Key string - Client key
- client
Key stringPassword - Password for keystorage. This field is optional. If you do not add it - the password will be generated automatically.
- ca_
certificate str - CA certificate
- client_
certificate str - Client certificate
- client_
key str - Client key
- client_
key_ strpassword - Password for keystorage. This field is optional. If you do not add it - the password will be generated automatically.
- ca
Certificate String - CA certificate
- client
Certificate String - Client certificate
- client
Key String - Client key
- client
Key StringPassword - Password for keystorage. This field is optional. If you do not add it - the password will be generated automatically.
DestinationPostgresConfigurationTunnelMethod, DestinationPostgresConfigurationTunnelMethodArgs
DestinationPostgresConfigurationTunnelMethodPasswordAuthentication, DestinationPostgresConfigurationTunnelMethodPasswordAuthenticationArgs
- 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
DestinationPostgresConfigurationTunnelMethodSshKeyAuthentication, DestinationPostgresConfigurationTunnelMethodSshKeyAuthenticationArgs
- 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
DestinationPostgresResourceAllocation, DestinationPostgresResourceAllocationArgs
- Default
Destination
Postgres Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<DestinationPostgres Resource Allocation Job Specific>
- Default
Destination
Postgres Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []DestinationPostgres Resource Allocation Job Specific
- default_
Destination
Postgres Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<DestinationPostgres Resource Allocation Job Specific>
- default
Destination
Postgres Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics DestinationPostgres Resource Allocation Job Specific[]
- default
Destination
Postgres Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[DestinationPostgres Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
DestinationPostgresResourceAllocationDefault, DestinationPostgresResourceAllocationDefaultArgs
- 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
DestinationPostgresResourceAllocationJobSpecific, DestinationPostgresResourceAllocationJobSpecificArgs
- 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 DestinationPostgres 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 DestinationPostgres 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 DestinationPostgres 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 DestinationPostgres 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 DestinationPostgres 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)
DestinationPostgresResourceAllocationJobSpecificResourceRequirements, DestinationPostgresResourceAllocationJobSpecificResourceRequirementsArgs
- 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/destinationPostgres:DestinationPostgres my_airbyte_destination_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.