From 116214d66611fc9c1a29d618fa8698660c3b4a15 Mon Sep 17 00:00:00 2001 From: Quetzalli Writes Date: Mon, 28 Jul 2025 19:29:53 +0200 Subject: [PATCH 1/4] draft 1 --- .../snowflake/features/rest-api-endpoints.md | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/content/docs/snowflake/features/rest-api-endpoints.md diff --git a/src/content/docs/snowflake/features/rest-api-endpoints.md b/src/content/docs/snowflake/features/rest-api-endpoints.md new file mode 100644 index 00000000..396299d5 --- /dev/null +++ b/src/content/docs/snowflake/features/rest-api-endpoints.md @@ -0,0 +1,22 @@ +--- +title: REST API Endpoints +description: Get started with REST API Endpoints in LocalStack for Snowflake +tags: ["Base"] +--- + +## Introduction + +The [Snowflake REST Database API](https://docs.snowflake.com/en/developer-guide/snowflake-rest-api/snowflake-rest-api) provides REST API endpoints that allow you to manage database schemas and tables in Snowflake databases. Snowflake REST APIs let you use the programming language of your choice to build your integrations. + +LocalStack for Snowflake supports REST API Database endpoints that let you manage your Snowflake databases locally. You can create a database, list your databases, or fetch a specific one. + +## Supported Snowflake REST Database API endpoints + +LocalStack for Snowflake supports the following REST API endpoints to manage your Snowflake databases locally: + + +| Supported Endpoint | Description | +|---------------------------------------------------|---------------------------------------------| +| `POST /api/v2/databases` | Creates a database. | +| `GET /api/v2/databases` | Lists accessible databases. | +| `GET /api/v2/databases/` | Fetche a specific database. | From bcaf6982236361f5fe20c3c825876efb3e196125 Mon Sep 17 00:00:00 2001 From: Quetzalli Date: Tue, 29 Jul 2025 03:13:00 -0700 Subject: [PATCH 2/4] typo Co-authored-by: Przemek Denkiewicz <67517453+hovaesco@users.noreply.github.com> --- src/content/docs/snowflake/features/rest-api-endpoints.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/snowflake/features/rest-api-endpoints.md b/src/content/docs/snowflake/features/rest-api-endpoints.md index 396299d5..7a09c01d 100644 --- a/src/content/docs/snowflake/features/rest-api-endpoints.md +++ b/src/content/docs/snowflake/features/rest-api-endpoints.md @@ -19,4 +19,4 @@ LocalStack for Snowflake supports the following REST API endpoints to manage you |---------------------------------------------------|---------------------------------------------| | `POST /api/v2/databases` | Creates a database. | | `GET /api/v2/databases` | Lists accessible databases. | -| `GET /api/v2/databases/` | Fetche a specific database. | +| `GET /api/v2/databases/` | Fetch a specific database. | From 01b27b6479e88b886eca9250f24ca47fbfa22a3f Mon Sep 17 00:00:00 2001 From: Quetzalli Date: Tue, 29 Jul 2025 03:13:33 -0700 Subject: [PATCH 3/4] remove db specific terms --- src/content/docs/snowflake/features/rest-api-endpoints.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/snowflake/features/rest-api-endpoints.md b/src/content/docs/snowflake/features/rest-api-endpoints.md index 7a09c01d..7b41f23c 100644 --- a/src/content/docs/snowflake/features/rest-api-endpoints.md +++ b/src/content/docs/snowflake/features/rest-api-endpoints.md @@ -1,5 +1,5 @@ --- -title: REST API Endpoints +title: REST API description: Get started with REST API Endpoints in LocalStack for Snowflake tags: ["Base"] --- From 160c3bbb5dff8ad10b40e94dedb8a1a00f63f8dc Mon Sep 17 00:00:00 2001 From: Quetzalli Date: Tue, 29 Jul 2025 03:23:46 -0700 Subject: [PATCH 4/4] remove db specific content --- src/content/docs/snowflake/features/rest-api-endpoints.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/content/docs/snowflake/features/rest-api-endpoints.md b/src/content/docs/snowflake/features/rest-api-endpoints.md index 7b41f23c..69ee0fc6 100644 --- a/src/content/docs/snowflake/features/rest-api-endpoints.md +++ b/src/content/docs/snowflake/features/rest-api-endpoints.md @@ -6,13 +6,13 @@ tags: ["Base"] ## Introduction -The [Snowflake REST Database API](https://docs.snowflake.com/en/developer-guide/snowflake-rest-api/snowflake-rest-api) provides REST API endpoints that allow you to manage database schemas and tables in Snowflake databases. Snowflake REST APIs let you use the programming language of your choice to build your integrations. +The [Snowflake REST API](https://docs.snowflake.com/en/developer-guide/snowflake-rest-api/snowflake-rest-api) provides REST API endpoints that allow you to manage schemas and tables in Snowflake. Snowflake REST APIs let you use the programming language of your choice to build your integrations. -LocalStack for Snowflake supports REST API Database endpoints that let you manage your Snowflake databases locally. You can create a database, list your databases, or fetch a specific one. +LocalStack for Snowflake supports REST API endpoints that let you manage your Snowflake data locally. -## Supported Snowflake REST Database API endpoints +## Supported Snowflake REST API endpoints -LocalStack for Snowflake supports the following REST API endpoints to manage your Snowflake databases locally: +LocalStack for Snowflake supports the following REST API endpoints to manage your Snowflake data locally: | Supported Endpoint | Description |