Skip to content

Commit 68ab9eb

Browse files
Merge pull request #18 from IBM/saikumar1607-202403161917
add support for eu-de region
2 parents 2684730 + 021002d commit 68ab9eb

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.secrets.baseline

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"files": "^.secrets.baseline$",
44
"lines": null
55
},
6-
"generated_at": "2023-12-18T04:30:14Z",
6+
"generated_at": "2024-03-16T19:18:18Z",
77
"plugins_used": [
88
{
99
"name": "AWSKeyDetector"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ using **`AppConfiguration.get_instance()`**. [See this example below](#fetching
5555
- `AppConfiguration.REGION_EU_GB` for London
5656
- `AppConfiguration.REGION_AU_SYD` for Sydney
5757
- `AppConfiguration.REGION_US_EAST` for Washington DC
58+
- `AppConfiguration.REGION_EU_DE` for Frankfurt
5859
- guid : GUID of the App Configuration service. Obtain it from the service credentials section of the dashboard
5960
- apikey : ApiKey of the App Configuration service. Obtain it from the service credentials section of the dashboard
6061
- collection_id : Id of the collection created in App Configuration service instance under the **Collections** section.

ibm_appconfiguration/appconfiguration.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ class AppConfiguration:
3838
REGION_EU_GB = "eu-gb"
3939
REGION_AU_SYD = "au-syd"
4040
REGION_US_EAST = "us-east"
41+
REGION_EU_DE = "eu-de"
4142
__override_service_url = None
4243
__use_private_endpoint = False
4344

ibm_appconfiguration/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
"""
1616
Version of ibm-appconfiguration-python-sdk
1717
"""
18-
__version__ = '0.3.2'
18+
__version__ = '0.3.3'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from setuptools import setup, find_packages
1313

1414
NAME = "ibm-appconfiguration-python-sdk"
15-
VERSION = "0.3.2"
15+
VERSION = "0.3.3"
1616
# To install the library, run the following
1717
#
1818
# python setup.py install

0 commit comments

Comments
 (0)