airbyte.DestinationSnowflake
Explore with Pulumi AI
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
Destination
Snowflake 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
Snowflake 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
Snowflake 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
Snowflake 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
Snowflake 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 DestinationSnowflake 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 DestinationSnowflake 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 DestinationSnowflake 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 DestinationSnowflake 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 DestinationSnowflake 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 DestinationSnowflake 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 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.
- Configuration
Destination
Snowflake 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 DestinationSnowflake 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
Snowflake 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 DestinationSnowflake 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
Snowflake 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 DestinationSnowflake 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
Snowflake 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 DestinationSnowflake 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
Snowflake 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 DestinationSnowflake 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
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
Destination
Snowflake Configuration Credentials - 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
- Jdbc
Url stringParams - 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 stringSchema - The schema to write raw tables into (default: airbyte_internal)
- Retention
Period doubleDays - 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 boolFor Upsert - 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
Destination
Snowflake Configuration Credentials - 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
- Jdbc
Url stringParams - 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 stringSchema - The schema to write raw tables into (default: airbyte_internal)
- Retention
Period float64Days - 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 boolFor Upsert - 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
Destination
Snowflake Configuration Credentials - 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
- jdbc
Url StringParams - 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 StringSchema - The schema to write raw tables into (default: airbyte_internal)
- retention
Period DoubleDays - 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 BooleanFor Upsert - 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
Destination
Snowflake Configuration Credentials - 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
- jdbc
Url stringParams - 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 stringSchema - The schema to write raw tables into (default: airbyte_internal)
- retention
Period numberDays - 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 booleanFor Upsert - 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
Destination
Snowflake Configuration Credentials - 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
- jdbc_
url_ strparams - 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_ strschema - The schema to write raw tables into (default: airbyte_internal)
- retention_
period_ floatdays - 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_ boolfor_ upsert - 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
- 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
- jdbc
Url StringParams - 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 StringSchema - The schema to write raw tables into (default: airbyte_internal)
- retention
Period NumberDays - 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 BooleanFor Upsert - 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
- Private
Key string - 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 stringPassword - Passphrase for private key
- Private
Key string - 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 stringPassword - Passphrase for private key
- private
Key String - 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 StringPassword - Passphrase for private key
- private
Key string - 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 stringPassword - 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_ strpassword - Passphrase for private key
- private
Key String - 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 StringPassword - Passphrase for private key
DestinationSnowflakeConfigurationCredentialsOAuth20, DestinationSnowflakeConfigurationCredentialsOAuth20Args
- Access
Token string - Enter you application's Access Token
- Refresh
Token string - Enter your application's Refresh Token
- Client
Id string - Enter your application's Client ID
- Client
Secret string - Enter your application's Client secret
- Access
Token string - Enter you application's Access Token
- Refresh
Token string - Enter your application's Refresh Token
- Client
Id string - Enter your application's Client ID
- Client
Secret string - Enter your application's Client secret
- access
Token String - Enter you application's Access Token
- refresh
Token String - Enter your application's Refresh Token
- client
Id String - Enter your application's Client ID
- client
Secret String - Enter your application's Client secret
- access
Token string - Enter you application's Access Token
- refresh
Token string - Enter your application's Refresh Token
- client
Id string - Enter your application's Client ID
- client
Secret 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
- access
Token String - Enter you application's Access Token
- refresh
Token String - Enter your application's Refresh Token
- client
Id String - Enter your application's Client ID
- client
Secret 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
Destination
Snowflake Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<DestinationSnowflake Resource Allocation Job Specific>
- Default
Destination
Snowflake Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []DestinationSnowflake Resource Allocation Job Specific
- default_
Destination
Snowflake Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<DestinationSnowflake Resource Allocation Job Specific>
- default
Destination
Snowflake Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics DestinationSnowflake Resource Allocation Job Specific[]
- default
Destination
Snowflake Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[DestinationSnowflake Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
DestinationSnowflakeResourceAllocationDefault, DestinationSnowflakeResourceAllocationDefaultArgs
- 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
DestinationSnowflakeResourceAllocationJobSpecific, DestinationSnowflakeResourceAllocationJobSpecificArgs
- 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 DestinationSnowflake 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 DestinationSnowflake 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 DestinationSnowflake 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 DestinationSnowflake 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 DestinationSnowflake 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)
DestinationSnowflakeResourceAllocationJobSpecificResourceRequirements, DestinationSnowflakeResourceAllocationJobSpecificResourceRequirementsArgs
- 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/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.