wherobots-python-dbapi 0.14.0__tar.gz → 0.15.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wherobots-python-dbapi
3
- Version: 0.14.0
3
+ Version: 0.15.0
4
4
  Summary: Python DB-API driver for Wherobots DB
5
5
  License: Apache 2.0
6
6
  Author: Maxime Petazzoni
@@ -90,8 +90,17 @@ parameter, passing in one of the `Runtime` enum values. For more
90
90
  information on runtime sizing and selection, please consult the
91
91
  [Wherobots product documentation](https://docs.wherobots.com).
92
92
 
93
- The only supported Wherobots compute region for now is `aws-us-west-2`,
94
- in AWS's Oregon (`us-west-2`) region.
93
+ You must also specify in which region your SQL session should execute
94
+ into. Wherobots Cloud supports the following compute regions:
95
+
96
+ * `aws-us-east-1`: AWS US East 1 (N. Virginia)
97
+ * `aws-us-west-2`: AWS US West 2 (Oregon)
98
+ * `aws-eu-west-1`: AWS EU West 1 (Ireland)
99
+
100
+ > [!IMPORTANT]
101
+ > The `aws-us-west-2` region is available to all Wherobots Cloud users
102
+ > and customers; other regions are currently reserved to Professional
103
+ > Edition customers.
95
104
 
96
105
  ### Advanced parameters
97
106
 
@@ -62,8 +62,17 @@ parameter, passing in one of the `Runtime` enum values. For more
62
62
  information on runtime sizing and selection, please consult the
63
63
  [Wherobots product documentation](https://docs.wherobots.com).
64
64
 
65
- The only supported Wherobots compute region for now is `aws-us-west-2`,
66
- in AWS's Oregon (`us-west-2`) region.
65
+ You must also specify in which region your SQL session should execute
66
+ into. Wherobots Cloud supports the following compute regions:
67
+
68
+ * `aws-us-east-1`: AWS US East 1 (N. Virginia)
69
+ * `aws-us-west-2`: AWS US West 2 (Oregon)
70
+ * `aws-eu-west-1`: AWS EU West 1 (Ireland)
71
+
72
+ > [!IMPORTANT]
73
+ > The `aws-us-west-2` region is available to all Wherobots Cloud users
74
+ > and customers; other regions are currently reserved to Professional
75
+ > Edition customers.
67
76
 
68
77
  ### Advanced parameters
69
78
 
@@ -3,7 +3,7 @@ name = "wherobots-python-dbapi"
3
3
 
4
4
  [tool.poetry]
5
5
  name = "wherobots-python-dbapi"
6
- version = "0.14.0"
6
+ version = "0.15.0"
7
7
  description = "Python DB-API driver for Wherobots DB"
8
8
  authors = ["Maxime Petazzoni <max@wherobots.com>"]
9
9
  license = "Apache 2.0"
@@ -2,7 +2,11 @@ from enum import Enum
2
2
 
3
3
 
4
4
  class Region(Enum):
5
+ # Americas
6
+ AWS_US_EAST_1 = "aws-us-east-1"
5
7
  AWS_US_WEST_2 = "aws-us-west-2"
8
+
9
+ # EMEA
6
10
  AWS_EU_WEST_1 = "aws-eu-west-1"
7
11
 
8
12