Skip to content

Commit 2a3232f

Browse files
Generator: Update SDK /services/serverupdate (#1046)
* Generate serverupdate * chore(sdk): add changelogs --------- Co-authored-by: Rüdiger Schmitz <152157960+bahkauv70@users.noreply.github.com>
1 parent 37c2edd commit 2a3232f

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
- Introduced dedicated type for product id with appropriate validations
55
- **Feature:**
66
- subscription products contain the plan id
7+
- `serverupdate` [v1.0.1](services/serverupdate/CHANGELOG.md#v101-2025-05-05)
8+
- **Minor change:** Use stderr by default.
79

810
## Release (2025-04-30)
911
- `stackitmarketplace`: [v0.4.0](services/stackitmarketplace/CHANGELOG.md#v040-2025-04-16)

services/serverupdate/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v1.0.1 (2025-05-05)
2+
- **Minor change:** Use stderr by default.
3+
14
## v1.0.0 (2025-03-18)
25
- **Breaking Change:** The region is no longer specified within the client configuration. Instead, the region must be passed as a parameter to any region-specific request.
36

services/serverupdate/src/stackit/serverupdate/configuration.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# coding: utf-8
22

3+
import sys
4+
5+
import os
6+
7+
38
"""
49
STACKIT Server Update Management API
510
@@ -12,8 +17,6 @@
1217
Do not edit the class manually.
1318
""" # noqa: E501 docstring might be too long
1419

15-
import os
16-
1720

1821
class HostConfiguration:
1922
def __init__(
@@ -30,6 +33,7 @@ def __init__(
3033
"as a function argument instead of being set in the client configuration.\n"
3134
"Once all services have migrated, the methods to specify the region in the client configuration "
3235
"will be removed.",
36+
file=sys.stderr,
3337
)
3438
"""Constructor
3539
"""

0 commit comments

Comments
 (0)