Skip to content

Commit d936d17

Browse files
Generator: Update SDK /services/intake (#3219)
Co-authored-by: Manuel Vaas <manuel.vaas@stackit.cloud>
1 parent f0e2b77 commit d936d17

34 files changed

+41
-36
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Release (2026-xx-xx)
22

3+
- `intake`: [v0.5.0](services/intake/CHANGELOG.md#v050)
4+
- **Breaking Change**: Switch from regional to global API server URL (region can't be set via `Configuration` / env-variable anymore).
35
- `iaas`: [v1.2.0](services/iaas/CHANGELOG.md#v120)
46
- **Feature:** Add `description` attribute to ModelClasses:
57
- `Backup`, `CreateBackupPayload`, `UpdateBackupPayload`

services/intake/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.5.0
2+
- **Breaking Change**: Switch from regional to global API server URL (region can't be set via `Configuration` / env-variable anymore).
3+
14
## v0.4.0
25
- **Feature:** Add new enum class `PartitioningUpdateType`
36
- **Feature:** Add attributes `partition_by` and `partitioning` to `IntakeCatalogPatch` model class

services/intake/oas_commit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cb550f3c2129447568c2855337b1874968e033bb

services/intake/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stackit-intake"
3-
version = "v0.4.0"
3+
version = "v0.5.0"
44
description = "STACKIT Intake API"
55
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
66
requires-python = ">=3.9,<4"
@@ -107,5 +107,5 @@ inline-quotes = '"'
107107
docstring-quotes = '"""'
108108
multiline-quotes = '"""'
109109
ban-relative-imports = true
110-
# Exclude generated code
110+
# Exclude generated code
111111
extend-exclude = [ "src/stackit/*/models/*", "src/stackit/*/api/*", "src/stackit/*/*.py" ]

services/intake/src/stackit/intake/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
This API provides endpoints for managing Intakes.
99
10-
The version of the OpenAPI document: 1beta.3.5
10+
The version of the OpenAPI document: 1beta.3.6
1111
Generated by OpenAPI Generator (https://openapi-generator.tech)
1212
1313
Do not edit the class manually.

services/intake/src/stackit/intake/api/default_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This API provides endpoints for managing Intakes.
77
8-
The version of the OpenAPI document: 1beta.3.5
8+
The version of the OpenAPI document: 1beta.3.6
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

services/intake/src/stackit/intake/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This API provides endpoints for managing Intakes.
77
8-
The version of the OpenAPI document: 1beta.3.5
8+
The version of the OpenAPI document: 1beta.3.6
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

services/intake/src/stackit/intake/configuration.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This API provides endpoints for managing Intakes.
77
8-
The version of the OpenAPI document: 1beta.3.5
8+
The version of the OpenAPI document: 1beta.3.6
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.
@@ -53,7 +53,7 @@ def __init__(
5353
)
5454
"""Constructor
5555
"""
56-
self._base_path = "https://intake.api.eu01.stackit.cloud"
56+
self._base_path = "https://intake.api.stackit.cloud"
5757
"""Default Base url
5858
"""
5959
self.server_index = 0 if server_index is None else server_index
@@ -77,13 +77,12 @@ def get_host_settings(self) -> List[HostSetting]:
7777
"""
7878
return [
7979
{
80-
"url": "https://intake.api.{region}stackit.cloud",
80+
"url": "https://intake.api.stackit.cloud",
8181
"description": "No description provided",
8282
"variables": {
8383
"region": {
8484
"description": "No description provided",
85-
"default_value": "eu01.",
86-
"enum_values": ["eu01."],
85+
"default_value": "global",
8786
}
8887
},
8988
}

services/intake/src/stackit/intake/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This API provides endpoints for managing Intakes.
77
8-
The version of the OpenAPI document: 1beta.3.5
8+
The version of the OpenAPI document: 1beta.3.6
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

services/intake/src/stackit/intake/models/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
This API provides endpoints for managing Intakes.
88
9-
The version of the OpenAPI document: 1beta.3.5
9+
The version of the OpenAPI document: 1beta.3.6
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111
1212
Do not edit the class manually.

0 commit comments

Comments
 (0)