Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,10 @@ The `Connection.connect()` function can take the following additional options:
- `region`: You must also specify in which region your SQL session should execute
into. Wherobots Cloud supports the following compute regions:
- `aws-us-east-1`: AWS US East 1 (N. Virginia)
- `aws-us-east-2`: AWS US East 2 (Ohio)
- `aws-us-west-2`: AWS US West 2 (Oregon)
- `aws-eu-west-1`: AWS EU West 1 (Ireland)
- `aws-ap-south-1`: AWS AP South 1 (Mumbai)

> [!IMPORTANT]
> The `aws-us-west-2` region is available to all Wherobots Cloud users
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wherobots-sql-driver",
"version": "0.8.1",
"version": "0.9.0",
"description": "TypeScript SDK for Wherobots DB",
"license": "Apache-2.0",
"main": "dist/src/index.js",
Expand Down
4 changes: 4 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
export enum Region {
// Americas
AWS_US_EAST_1 = "aws-us-east-1",
AWS_US_EAST_2 = "aws-us-east-2",
AWS_US_WEST_2 = "aws-us-west-2",

// EMEA
AWS_EU_WEST_1 = "aws-eu-west-1",

// APAC
AWS_AP_SOUTH_1 = "aws-ap-south-1",
}

export enum Runtime {
Expand Down