Skip to content

Commit 0f573e1

Browse files
Generator: Update SDK /services/authorization (#571)
* Generate authorization * Add changelog and update service Signed-off-by: Alexander Dahmen <[email protected]> --------- Signed-off-by: Alexander Dahmen <[email protected]> Co-authored-by: Alexander Dahmen <[email protected]>
1 parent 9f78cad commit 0f573e1

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

Diff for: CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Release (2025-XX-XX)
22

3+
- `authorization`: [v0.2.2](services/authorization/CHANGELOG.md#v022-2025-01-21)
4+
- **Bugfix:** Revert back to global URL configuration
35
- `sqlserverflex`: [v0.3.0](services/sqlserverflex/CHANGELOG.md#v030-2025-01-21)
46
- **Breaking change**: Delete endpoint made private.
57
- `mongodbflex`: [v0.3.0](services/mongodbflex/CHANGELOG.md#v030-2025-01-21)

Diff for: services/authorization/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v0.2.2 (2025-01-21)
2+
3+
- **Bugfix:** Revert back to global URL configuration
4+
15
## v0.2.1 (2025-01-14)
26

37
- **Bugfix**: `configuration.py` region adjustment was missing

Diff for: services/authorization/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "stackit-authorization"
33

44
[tool.poetry]
55
name = "stackit-authorization"
6-
version = "v0.2.1"
6+
version = "v0.2.2"
77
authors = [
88
"STACKIT Developer Tools <[email protected]>",
99
]

Diff for: services/authorization/src/stackit/authorization/configuration.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def __init__(
3232
)
3333
"""Constructor
3434
"""
35-
self._base_path = "https://authorization.api.eu01.stackit.cloud"
35+
self._base_path = "https://authorization.api.stackit.cloud"
3636
"""Default Base url
3737
"""
3838
self.server_index = 0 if server_index is None else server_index
@@ -56,13 +56,12 @@ def get_host_settings(self):
5656
"""
5757
return [
5858
{
59-
"url": "https://authorization.api.{region}stackit.cloud",
59+
"url": "https://authorization.api.stackit.cloud",
6060
"description": "No description provided",
6161
"variables": {
6262
"region": {
6363
"description": "No description provided",
64-
"default_value": "eu01.",
65-
"enum_values": ["eu01.", "eu02."],
64+
"default_value": "global",
6665
}
6766
},
6867
}

0 commit comments

Comments
 (0)