package
0.11.0
Repository: https://github.com/raystack/meteor.git
Documentation: pkg.go.dev

# README

snowflake

Usage

source:
  type: snowflake
  config:
    connection_url: user:password@my_organization-my_account/mydb
    exclude:
      databases:
        - database_a
        - database_b
      tables:
        - database_c.table_a

Inputs

KeyValueExampleDescription
connection_urlstringuser:password@org22-acc123/mydbURL to access the snowflake serverrequired
exclude.databases[]string[database_a, database_b]List of databases to be excludedoptional
exclude.tables[]string[database_c.table_a, database_c.table_b]List of tables to be excludedoptional

Outputs

FieldSample Value
resource.urnmy_database.my_table
resource.namemy_table
resource.servicesnowflake
descriptiontable description
schema[]column

Column

FieldSample Value
nametotal_price
descriptionitem's total price
data_typedecimal
is_nullabletrue
length11

Contributing

Refer to the contribution guidelines for information on contributing to this module.

# Functions

New returns a pointer to an initialized Extractor Object.
WithHTTPTransport assign custom http client to the Extractor constructor.

# Structs

Config holds the connection URL for the extractor.
No description provided by the author
Extractor manages the extraction of data from snowflake.

# Type aliases

Option provides extension abstraction to Extractor constructor.