Skip to content

Commit 0c94c46

Browse files
Generator: Update SDK /services/intake (#2567)
Co-authored-by: Ruben Hoenle <[email protected]>
1 parent 8d306ae commit 0c94c46

33 files changed

+103
-32
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
## Release (2025-XX-XX)
2+
- `intake`: [v0.4.0](services/intake/CHANGELOG.md#v040)
3+
- **Feature:** Add new enum class `PartitioningUpdateType`
4+
- **Feature:** Add attributes `partition_by` and `partitioning` to `IntakeCatalogPatch` model class
25
- `authorization`: [v0.5.0](services/authorization/CHANGELOG.md#v050)
36
- Add new `etag` attribute to `Role` model class
47
- `ske`: [v1.4.0](services/ske/CHANGELOG.md#v140)

services/intake/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v0.4.0
2+
- **Feature:** Add new enum class `PartitioningUpdateType`
3+
- **Feature:** Add attributes `partition_by` and `partitioning` to `IntakeCatalogPatch` model class
4+
15
## v0.3.0
26
- Validate `display_name` attribute regular expression using a field validator in model classes `CreateIntakePayload`, `CreateIntakeRunnerPayload` and `CreateIntakeUserPayload`
37
- Set minimum length (`12`) for `password` attribute in model class `CreateIntakeUserPayload`

services/intake/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "stackit-intake"
33

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

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

Lines changed: 5 additions & 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.4
10+
The version of the OpenAPI document: 1beta.3.5
1111
Generated by OpenAPI Generator (https://openapi-generator.tech)
1212
1313
Do not edit the class manually.
@@ -46,6 +46,7 @@
4646
"ListIntakeUsersResponse",
4747
"ListIntakesResponse",
4848
"PartitioningType",
49+
"PartitioningUpdateType",
4950
"UpdateIntakePayload",
5051
"UpdateIntakeRunnerPayload",
5152
"UpdateIntakeUserPayload",
@@ -105,6 +106,9 @@
105106
ListIntakesResponse as ListIntakesResponse,
106107
)
107108
from stackit.intake.models.partitioning_type import PartitioningType as PartitioningType
109+
from stackit.intake.models.partitioning_update_type import (
110+
PartitioningUpdateType as PartitioningUpdateType,
111+
)
108112
from stackit.intake.models.update_intake_payload import (
109113
UpdateIntakePayload as UpdateIntakePayload,
110114
)

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.4
8+
The version of the OpenAPI document: 1beta.3.5
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.4
8+
The version of the OpenAPI document: 1beta.3.5
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: 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.4
8+
The version of the OpenAPI document: 1beta.3.5
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

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.4
8+
The version of the OpenAPI document: 1beta.3.5
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: 2 additions & 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.4
9+
The version of the OpenAPI document: 1beta.3.5
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111
1212
Do not edit the class manually.
@@ -32,6 +32,7 @@
3232
from stackit.intake.models.list_intake_users_response import ListIntakeUsersResponse
3333
from stackit.intake.models.list_intakes_response import ListIntakesResponse
3434
from stackit.intake.models.partitioning_type import PartitioningType
35+
from stackit.intake.models.partitioning_update_type import PartitioningUpdateType
3536
from stackit.intake.models.update_intake_payload import UpdateIntakePayload
3637
from stackit.intake.models.update_intake_runner_payload import UpdateIntakeRunnerPayload
3738
from stackit.intake.models.update_intake_user_payload import UpdateIntakeUserPayload

services/intake/src/stackit/intake/models/catalog_auth.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.4
8+
The version of the OpenAPI document: 1beta.3.5
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

0 commit comments

Comments
 (0)