From 09b7ef6d1cca8d1cea4d3ea655660f6f823e8bed Mon Sep 17 00:00:00 2001 From: Juan Martinez Ramirez Date: Fri, 3 May 2024 14:35:35 -0600 Subject: [PATCH] Update readme --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/README.md b/README.md index 59daa2d88..ace4f012c 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,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