Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jmartinezramirez committed May 3, 2024
1 parent e08d717 commit e982a9c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,36 @@ Alternatively, packages can also be downloaded using Package Manager Console:
PM> Install-Package Snowflake.Data
```

# Cloud provider distributions

The Snowflake.Data package includes the full dependencies related to all the supported cloud providers, if you are only interested installing the package and the related dependencies for a specific cloud provider you have to execute the following commands

*Install our library core package*

```{r, engine='bash', code_block_name}
PM> Install-Package Snowflake.Data.Core
```

*After that install the specific package for the provider dependencies.*

```{r, engine='bash', code_block_name}
PM> Install-Package Snowflake.Data.{CLOUD_PROVIDER}
```

*e.g. AWS provider package*

```{r, engine='bash', code_block_name}
PM> Install-Package Snowflake.Data.AWS
```

__Packages by cloud provider__

| Cloud Provider | Package ID |
| -------------- | ---------------------- |
| AWS | Snowflake.Data.AWS |
| Azure | Snowflake.Data.Azure |
| Google Cloud | Snowflake.Data.GCP |

# Testing the Connector

Before running tests, create a parameters.json file under Snowflake.Data.Tests\ directory. In this file, specify username, password and account info that tests will run against. Here is a sample parameters.json file
Expand Down

0 comments on commit e982a9c

Please sign in to comment.