1. Packages
  2. Airbyte Provider
  3. API Docs
  4. DestinationSnowflake
airbyte 0.8.0-beta2 published on Thursday, Mar 27, 2025 by airbytehq

airbyte.DestinationSnowflake

Explore with Pulumi AI

airbyte logo
airbyte 0.8.0-beta2 published on Thursday, Mar 27, 2025 by airbytehq

    DestinationSnowflake 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.DestinationSnowflake;
    import com.pulumi.airbyte.DestinationSnowflakeArgs;
    import com.pulumi.airbyte.inputs.DestinationSnowflakeConfigurationArgs;
    import com.pulumi.airbyte.inputs.DestinationSnowflakeConfigurationCredentialsArgs;
    import com.pulumi.airbyte.inputs.DestinationSnowflakeConfigurationCredentialsOAuth20Args;
    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 myDestinationSnowflake = new DestinationSnowflake("myDestinationSnowflake", DestinationSnowflakeArgs.builder()
                .configuration(DestinationSnowflakeConfigurationArgs.builder()
                    .credentials(DestinationSnowflakeConfigurationCredentialsArgs.builder()
                        .oAuth20(DestinationSnowflakeConfigurationCredentialsOAuth20Args.builder()
                            .accessToken("...my_access_token...")
                            .clientId("...my_client_id...")
                            .clientSecret("...my_client_secret...")
                            .refreshToken("...my_refresh_token...")
                            .build())
                        .build())
                    .database("AIRBYTE_DATABASE")
                    .disable_type_dedupe(true)
                    .host("accountname.us-east-2.aws.snowflakecomputing.com")
                    .jdbc_url_params("...my_jdbc_url_params...")
                    .raw_data_schema("...my_raw_data_schema...")
                    .retention_period_days(9)
                    .role("AIRBYTE_ROLE")
                    .schema("AIRBYTE_SCHEMA")
                    .use_merge_for_upsert(false)
                    .username("AIRBYTE_USER")
                    .warehouse("AIRBYTE_WAREHOUSE")
                    .build())
                .definitionId("fce231ce-04a4-46ec-a244-d1436db0281f")
                .workspaceId("058d9730-38a6-485c-8631-dc0cc86125f9")
                .build());
    
        }
    }
    
    resources:
      myDestinationSnowflake:
        type: airbyte:DestinationSnowflake
        properties:
          configuration:
            credentials:
              oAuth20:
                accessToken: '...my_access_token...'
                clientId: '...my_client_id...'
                clientSecret: '...my_client_secret...'
                refreshToken: '...my_refresh_token...'
            database: AIRBYTE_DATABASE
            disable_type_dedupe: true
            host: accountname.us-east-2.aws.snowflakecomputing.com
            jdbc_url_params: '...my_jdbc_url_params...'
            raw_data_schema: '...my_raw_data_schema...'
            retention_period_days: 9
            role: AIRBYTE_ROLE
            schema: AIRBYTE_SCHEMA
            use_merge_for_upsert: false
            username: AIRBYTE_USER
            warehouse: AIRBYTE_WAREHOUSE
          definitionId: fce231ce-04a4-46ec-a244-d1436db0281f
          workspaceId: 058d9730-38a6-485c-8631-dc0cc86125f9
    

    Create DestinationSnowflake Resource

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

    Constructor syntax

    new DestinationSnowflake(name: string, args: DestinationSnowflakeArgs, opts?: CustomResourceOptions);
    @overload
    def DestinationSnowflake(resource_name: str,
                             args: DestinationSnowflakeArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def DestinationSnowflake(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             configuration: Optional[DestinationSnowflakeConfigurationArgs] = None,
                             workspace_id: Optional[str] = None,
                             definition_id: Optional[str] = None,
                             name: Optional[str] = None)
    func NewDestinationSnowflake(ctx *Context, name string, args DestinationSnowflakeArgs, opts ...ResourceOption) (*DestinationSnowflake, error)
    public DestinationSnowflake(string name, DestinationSnowflakeArgs args, CustomResourceOptions? opts = null)
    public DestinationSnowflake(String name, DestinationSnowflakeArgs args)
    public DestinationSnowflake(String name, DestinationSnowflakeArgs args, CustomResourceOptions options)
    
    type: airbyte:DestinationSnowflake
    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 DestinationSnowflakeArgs
    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 DestinationSnowflakeArgs
    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 DestinationSnowflakeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DestinationSnowflakeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DestinationSnowflakeArgs
    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 destinationSnowflakeResource = new Airbyte.DestinationSnowflake("destinationSnowflakeResource", new()
    {
        Configuration = new Airbyte.Inputs.DestinationSnowflakeConfigurationArgs
        {
            Database = "string",
            Host = "string",
            Role = "string",
            Schema = "string",
            Username = "string",
            Warehouse = "string",
            Credentials = new Airbyte.Inputs.DestinationSnowflakeConfigurationCredentialsArgs
            {
                KeyPairAuthentication = new Airbyte.Inputs.DestinationSnowflakeConfigurationCredentialsKeyPairAuthenticationArgs
                {
                    PrivateKey = "string",
                    PrivateKeyPassword = "string",
                },
                OAuth20 = new Airbyte.Inputs.DestinationSnowflakeConfigurationCredentialsOAuth20Args
                {
                    AccessToken = "string",
                    RefreshToken = "string",
                    ClientId = "string",
                    ClientSecret = "string",
                },
                UsernameAndPassword = new Airbyte.Inputs.DestinationSnowflakeConfigurationCredentialsUsernameAndPasswordArgs
                {
                    Password = "string",
                },
            },
            DisableTypeDedupe = false,
            JdbcUrlParams = "string",
            RawDataSchema = "string",
            RetentionPeriodDays = 0,
            UseMergeForUpsert = false,
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
    });
    
    example, err := airbyte.NewDestinationSnowflake(ctx, "destinationSnowflakeResource", &airbyte.DestinationSnowflakeArgs{
    Configuration: &.DestinationSnowflakeConfigurationArgs{
    Database: pulumi.String("string"),
    Host: pulumi.String("string"),
    Role: pulumi.String("string"),
    Schema: pulumi.String("string"),
    Username: pulumi.String("string"),
    Warehouse: pulumi.String("string"),
    Credentials: &.DestinationSnowflakeConfigurationCredentialsArgs{
    KeyPairAuthentication: &.DestinationSnowflakeConfigurationCredentialsKeyPairAuthenticationArgs{
    PrivateKey: pulumi.String("string"),
    PrivateKeyPassword: pulumi.String("string"),
    },
    OAuth20: &.DestinationSnowflakeConfigurationCredentialsOAuth20Args{
    AccessToken: pulumi.String("string"),
    RefreshToken: pulumi.String("string"),
    ClientId: pulumi.String("string"),
    ClientSecret: pulumi.String("string"),
    },
    UsernameAndPassword: &.DestinationSnowflakeConfigurationCredentialsUsernameAndPasswordArgs{
    Password: pulumi.String("string"),
    },
    },
    DisableTypeDedupe: pulumi.Bool(false),
    JdbcUrlParams: pulumi.String("string"),
    RawDataSchema: pulumi.String("string"),
    RetentionPeriodDays: pulumi.Float64(0),
    UseMergeForUpsert: pulumi.Bool(false),
    },
    WorkspaceId: pulumi.String("string"),
    DefinitionId: pulumi.String("string"),
    Name: pulumi.String("string"),
    })
    
    var destinationSnowflakeResource = new DestinationSnowflake("destinationSnowflakeResource", DestinationSnowflakeArgs.builder()
        .configuration(DestinationSnowflakeConfigurationArgs.builder()
            .database("string")
            .host("string")
            .role("string")
            .schema("string")
            .username("string")
            .warehouse("string")
            .credentials(DestinationSnowflakeConfigurationCredentialsArgs.builder()
                .keyPairAuthentication(DestinationSnowflakeConfigurationCredentialsKeyPairAuthenticationArgs.builder()
                    .privateKey("string")
                    .privateKeyPassword("string")
                    .build())
                .oAuth20(DestinationSnowflakeConfigurationCredentialsOAuth20Args.builder()
                    .accessToken("string")
                    .refreshToken("string")
                    .clientId("string")
                    .clientSecret("string")
                    .build())
                .usernameAndPassword(DestinationSnowflakeConfigurationCredentialsUsernameAndPasswordArgs.builder()
                    .password("string")
                    .build())
                .build())
            .disableTypeDedupe(false)
            .jdbcUrlParams("string")
            .rawDataSchema("string")
            .retentionPeriodDays(0)
            .useMergeForUpsert(false)
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .build());
    
    destination_snowflake_resource = airbyte.DestinationSnowflake("destinationSnowflakeResource",
        configuration={
            "database": "string",
            "host": "string",
            "role": "string",
            "schema": "string",
            "username": "string",
            "warehouse": "string",
            "credentials": {
                "key_pair_authentication": {
                    "private_key": "string",
                    "private_key_password": "string",
                },
                "o_auth20": {
                    "access_token": "string",
                    "refresh_token": "string",
                    "client_id": "string",
                    "client_secret": "string",
                },
                "username_and_password": {
                    "password": "string",
                },
            },
            "disable_type_dedupe": False,
            "jdbc_url_params": "string",
            "raw_data_schema": "string",
            "retention_period_days": 0,
            "use_merge_for_upsert": False,
        },
        workspace_id="string",
        definition_id="string",
        name="string")
    
    const destinationSnowflakeResource = new airbyte.DestinationSnowflake("destinationSnowflakeResource", {
        configuration: {
            database: "string",
            host: "string",
            role: "string",
            schema: "string",
            username: "string",
            warehouse: "string",
            credentials: {
                keyPairAuthentication: {
                    privateKey: "string",
                    privateKeyPassword: "string",
                },
                oAuth20: {
                    accessToken: "string",
                    refreshToken: "string",
                    clientId: "string",
                    clientSecret: "string",
                },
                usernameAndPassword: {
                    password: "string",
                },
            },
            disableTypeDedupe: false,
            jdbcUrlParams: "string",
            rawDataSchema: "string",
            retentionPeriodDays: 0,
            useMergeForUpsert: false,
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
    });
    
    type: airbyte:DestinationSnowflake
    properties:
        configuration:
            credentials:
                keyPairAuthentication:
                    privateKey: string
                    privateKeyPassword: string
                oAuth20:
                    accessToken: string
                    clientId: string
                    clientSecret: string
                    refreshToken: string
                usernameAndPassword:
                    password: string
            database: string
            disableTypeDedupe: false
            host: string
            jdbcUrlParams: string
            rawDataSchema: string
            retentionPeriodDays: 0
            role: string
            schema: string
            useMergeForUpsert: false
            username: string
            warehouse: string
        definitionId: string
        name: string
        workspaceId: string
    

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

    Configuration DestinationSnowflakeConfiguration
    WorkspaceId string
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the destination e.g. dev-mysql-instance.
    Configuration DestinationSnowflakeConfigurationArgs
    WorkspaceId string
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationSnowflakeConfiguration
    workspaceId String
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationSnowflakeConfiguration
    workspaceId string
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name string
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationSnowflakeConfigurationArgs
    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
    workspaceId String
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the destination e.g. dev-mysql-instance.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DestinationSnowflake resource produces the following output properties:

    CreatedAt double
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation DestinationSnowflakeResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    CreatedAt float64
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation DestinationSnowflakeResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    createdAt Double
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAllocation DestinationSnowflakeResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    createdAt number
    destinationId string
    destinationType string
    id string
    The provider-assigned unique ID for this managed resource.
    resourceAllocation DestinationSnowflakeResourceAllocation
    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 DestinationSnowflakeResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    createdAt Number
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAllocation Property Map
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.

    Look up Existing DestinationSnowflake Resource

    Get an existing DestinationSnowflake 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?: DestinationSnowflakeState, opts?: CustomResourceOptions): DestinationSnowflake
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[DestinationSnowflakeConfigurationArgs] = 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[DestinationSnowflakeResourceAllocationArgs] = None,
            workspace_id: Optional[str] = None) -> DestinationSnowflake
    func GetDestinationSnowflake(ctx *Context, name string, id IDInput, state *DestinationSnowflakeState, opts ...ResourceOption) (*DestinationSnowflake, error)
    public static DestinationSnowflake Get(string name, Input<string> id, DestinationSnowflakeState? state, CustomResourceOptions? opts = null)
    public static DestinationSnowflake get(String name, Output<String> id, DestinationSnowflakeState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:DestinationSnowflake    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.
    The following state arguments are supported:
    Configuration DestinationSnowflakeConfiguration
    CreatedAt double
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    ResourceAllocation DestinationSnowflakeResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    WorkspaceId string
    Configuration DestinationSnowflakeConfigurationArgs
    CreatedAt float64
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    ResourceAllocation DestinationSnowflakeResourceAllocationArgs
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    WorkspaceId string
    configuration DestinationSnowflakeConfiguration
    createdAt Double
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation DestinationSnowflakeResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    workspaceId String
    configuration DestinationSnowflakeConfiguration
    createdAt number
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId string
    destinationType string
    name string
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation DestinationSnowflakeResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    workspaceId string
    configuration DestinationSnowflakeConfigurationArgs
    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 DestinationSnowflakeResourceAllocationArgs
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    workspace_id str
    configuration Property Map
    createdAt Number
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation Property Map
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    workspaceId String

    Supporting Types

    DestinationSnowflakeConfiguration, DestinationSnowflakeConfigurationArgs

    Database string
    Enter the name of the \n\ndatabase\n\n you want to sync data into
    Host string
    Enter your Snowflake account's \n\nlocator\n\n (in the format \n\n.\n\n.\n\n.snowflakecomputing.com)
    Role string
    Enter the \n\nrole\n\n that you want to use to access Snowflake
    Schema string
    Enter the name of the default \n\nschema\n\n
    Username string
    Enter the name of the user you want to use to access the database
    Warehouse string
    Enter the name of the \n\nwarehouse\n\n that you want to use as a compute cluster
    Credentials DestinationSnowflakeConfigurationCredentials
    DisableTypeDedupe bool
    Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
    JdbcUrlParams string
    Enter the 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
    RawDataSchema string
    The schema to write raw tables into (default: airbyte_internal)
    RetentionPeriodDays double
    The number of days of Snowflake Time Travel to enable on the tables. See \n\nSnowflake's documentation\n\n for more information. Setting a nonzero value will incur increased storage costs in your Snowflake instance. Default: 1
    UseMergeForUpsert bool
    Use MERGE for de-duplication of final tables. This option no effect if Final tables are disabled or Sync mode is not DEDUPE. Default: false
    Database string
    Enter the name of the \n\ndatabase\n\n you want to sync data into
    Host string
    Enter your Snowflake account's \n\nlocator\n\n (in the format \n\n.\n\n.\n\n.snowflakecomputing.com)
    Role string
    Enter the \n\nrole\n\n that you want to use to access Snowflake
    Schema string
    Enter the name of the default \n\nschema\n\n
    Username string
    Enter the name of the user you want to use to access the database
    Warehouse string
    Enter the name of the \n\nwarehouse\n\n that you want to use as a compute cluster
    Credentials DestinationSnowflakeConfigurationCredentials
    DisableTypeDedupe bool
    Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
    JdbcUrlParams string
    Enter the 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
    RawDataSchema string
    The schema to write raw tables into (default: airbyte_internal)
    RetentionPeriodDays float64
    The number of days of Snowflake Time Travel to enable on the tables. See \n\nSnowflake's documentation\n\n for more information. Setting a nonzero value will incur increased storage costs in your Snowflake instance. Default: 1
    UseMergeForUpsert bool
    Use MERGE for de-duplication of final tables. This option no effect if Final tables are disabled or Sync mode is not DEDUPE. Default: false
    database String
    Enter the name of the \n\ndatabase\n\n you want to sync data into
    host String
    Enter your Snowflake account's \n\nlocator\n\n (in the format \n\n.\n\n.\n\n.snowflakecomputing.com)
    role String
    Enter the \n\nrole\n\n that you want to use to access Snowflake
    schema String
    Enter the name of the default \n\nschema\n\n
    username String
    Enter the name of the user you want to use to access the database
    warehouse String
    Enter the name of the \n\nwarehouse\n\n that you want to use as a compute cluster
    credentials DestinationSnowflakeConfigurationCredentials
    disableTypeDedupe Boolean
    Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
    jdbcUrlParams String
    Enter the 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
    rawDataSchema String
    The schema to write raw tables into (default: airbyte_internal)
    retentionPeriodDays Double
    The number of days of Snowflake Time Travel to enable on the tables. See \n\nSnowflake's documentation\n\n for more information. Setting a nonzero value will incur increased storage costs in your Snowflake instance. Default: 1
    useMergeForUpsert Boolean
    Use MERGE for de-duplication of final tables. This option no effect if Final tables are disabled or Sync mode is not DEDUPE. Default: false
    database string
    Enter the name of the \n\ndatabase\n\n you want to sync data into
    host string
    Enter your Snowflake account's \n\nlocator\n\n (in the format \n\n.\n\n.\n\n.snowflakecomputing.com)
    role string
    Enter the \n\nrole\n\n that you want to use to access Snowflake
    schema string
    Enter the name of the default \n\nschema\n\n
    username string
    Enter the name of the user you want to use to access the database
    warehouse string
    Enter the name of the \n\nwarehouse\n\n that you want to use as a compute cluster
    credentials DestinationSnowflakeConfigurationCredentials
    disableTypeDedupe boolean
    Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
    jdbcUrlParams string
    Enter the 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
    rawDataSchema string
    The schema to write raw tables into (default: airbyte_internal)
    retentionPeriodDays number
    The number of days of Snowflake Time Travel to enable on the tables. See \n\nSnowflake's documentation\n\n for more information. Setting a nonzero value will incur increased storage costs in your Snowflake instance. Default: 1
    useMergeForUpsert boolean
    Use MERGE for de-duplication of final tables. This option no effect if Final tables are disabled or Sync mode is not DEDUPE. Default: false
    database str
    Enter the name of the \n\ndatabase\n\n you want to sync data into
    host str
    Enter your Snowflake account's \n\nlocator\n\n (in the format \n\n.\n\n.\n\n.snowflakecomputing.com)
    role str
    Enter the \n\nrole\n\n that you want to use to access Snowflake
    schema str
    Enter the name of the default \n\nschema\n\n
    username str
    Enter the name of the user you want to use to access the database
    warehouse str
    Enter the name of the \n\nwarehouse\n\n that you want to use as a compute cluster
    credentials DestinationSnowflakeConfigurationCredentials
    disable_type_dedupe bool
    Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
    jdbc_url_params str
    Enter the 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
    raw_data_schema str
    The schema to write raw tables into (default: airbyte_internal)
    retention_period_days float
    The number of days of Snowflake Time Travel to enable on the tables. See \n\nSnowflake's documentation\n\n for more information. Setting a nonzero value will incur increased storage costs in your Snowflake instance. Default: 1
    use_merge_for_upsert bool
    Use MERGE for de-duplication of final tables. This option no effect if Final tables are disabled or Sync mode is not DEDUPE. Default: false
    database String
    Enter the name of the \n\ndatabase\n\n you want to sync data into
    host String
    Enter your Snowflake account's \n\nlocator\n\n (in the format \n\n.\n\n.\n\n.snowflakecomputing.com)
    role String
    Enter the \n\nrole\n\n that you want to use to access Snowflake
    schema String
    Enter the name of the default \n\nschema\n\n
    username String
    Enter the name of the user you want to use to access the database
    warehouse String
    Enter the name of the \n\nwarehouse\n\n that you want to use as a compute cluster
    credentials Property Map
    disableTypeDedupe Boolean
    Disable Writing Final Tables. WARNING! The data format in airbytedata is likely stable but there are no guarantees that other metadata columns will remain the same in future versions. Default: false
    jdbcUrlParams String
    Enter the 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
    rawDataSchema String
    The schema to write raw tables into (default: airbyte_internal)
    retentionPeriodDays Number
    The number of days of Snowflake Time Travel to enable on the tables. See \n\nSnowflake's documentation\n\n for more information. Setting a nonzero value will incur increased storage costs in your Snowflake instance. Default: 1
    useMergeForUpsert Boolean
    Use MERGE for de-duplication of final tables. This option no effect if Final tables are disabled or Sync mode is not DEDUPE. Default: false

    DestinationSnowflakeConfigurationCredentials, DestinationSnowflakeConfigurationCredentialsArgs

    DestinationSnowflakeConfigurationCredentialsKeyPairAuthentication, DestinationSnowflakeConfigurationCredentialsKeyPairAuthenticationArgs

    PrivateKey string
    RSA Private key to use for Snowflake connection. See the \n\ndocs\n\n for more information on how to obtain this key.
    PrivateKeyPassword string
    Passphrase for private key
    PrivateKey string
    RSA Private key to use for Snowflake connection. See the \n\ndocs\n\n for more information on how to obtain this key.
    PrivateKeyPassword string
    Passphrase for private key
    privateKey String
    RSA Private key to use for Snowflake connection. See the \n\ndocs\n\n for more information on how to obtain this key.
    privateKeyPassword String
    Passphrase for private key
    privateKey string
    RSA Private key to use for Snowflake connection. See the \n\ndocs\n\n for more information on how to obtain this key.
    privateKeyPassword string
    Passphrase for private key
    private_key str
    RSA Private key to use for Snowflake connection. See the \n\ndocs\n\n for more information on how to obtain this key.
    private_key_password str
    Passphrase for private key
    privateKey String
    RSA Private key to use for Snowflake connection. See the \n\ndocs\n\n for more information on how to obtain this key.
    privateKeyPassword String
    Passphrase for private key

    DestinationSnowflakeConfigurationCredentialsOAuth20, DestinationSnowflakeConfigurationCredentialsOAuth20Args

    AccessToken string
    Enter you application's Access Token
    RefreshToken string
    Enter your application's Refresh Token
    ClientId string
    Enter your application's Client ID
    ClientSecret string
    Enter your application's Client secret
    AccessToken string
    Enter you application's Access Token
    RefreshToken string
    Enter your application's Refresh Token
    ClientId string
    Enter your application's Client ID
    ClientSecret string
    Enter your application's Client secret
    accessToken String
    Enter you application's Access Token
    refreshToken String
    Enter your application's Refresh Token
    clientId String
    Enter your application's Client ID
    clientSecret String
    Enter your application's Client secret
    accessToken string
    Enter you application's Access Token
    refreshToken string
    Enter your application's Refresh Token
    clientId string
    Enter your application's Client ID
    clientSecret string
    Enter your application's Client secret
    access_token str
    Enter you application's Access Token
    refresh_token str
    Enter your application's Refresh Token
    client_id str
    Enter your application's Client ID
    client_secret str
    Enter your application's Client secret
    accessToken String
    Enter you application's Access Token
    refreshToken String
    Enter your application's Refresh Token
    clientId String
    Enter your application's Client ID
    clientSecret String
    Enter your application's Client secret

    DestinationSnowflakeConfigurationCredentialsUsernameAndPassword, DestinationSnowflakeConfigurationCredentialsUsernameAndPasswordArgs

    Password string
    Enter the password associated with the username.
    Password string
    Enter the password associated with the username.
    password String
    Enter the password associated with the username.
    password string
    Enter the password associated with the username.
    password str
    Enter the password associated with the username.
    password String
    Enter the password associated with the username.

    DestinationSnowflakeResourceAllocation, DestinationSnowflakeResourceAllocationArgs

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

    DestinationSnowflakeResourceAllocationDefault, DestinationSnowflakeResourceAllocationDefaultArgs

    DestinationSnowflakeResourceAllocationJobSpecific, DestinationSnowflakeResourceAllocationJobSpecificArgs

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

    DestinationSnowflakeResourceAllocationJobSpecificResourceRequirements, DestinationSnowflakeResourceAllocationJobSpecificResourceRequirementsArgs

    Import

    $ pulumi import airbyte:index/destinationSnowflake:DestinationSnowflake my_airbyte_destination_snowflake ""
    

    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.
    airbyte logo
    airbyte 0.8.0-beta2 published on Thursday, Mar 27, 2025 by airbytehq