Skip to content

Commit 5a47421

Browse files
Generator: Update SDK /services/intake (#2272)
v0.1.2 - Feature: Add new field `partitioning` to `IntakeCatalog` model --------- Co-authored-by: Marcel Jacek <[email protected]>
1 parent c2204fd commit 5a47421

32 files changed

+94
-33
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@
1212
- Switch to API version `v1` of STACKIT KMS service (previously `v1beta`)
1313
- **Breaking Change:** Removal of deprecated `Backend` model
1414
- **Breaking Change:** Mark `protection` attribute as required in `Key`, `CreateKeyPayload`, `CreateWrappingKeyPayload` and `WrappingKey` model
15-
- `intake`: [v0.1.1](services/intake/CHANGELOG.md#v011)
16-
- Mark attributes `max_message_size_ki_b` and `max_messages_per_hour` as optional (previously required) in `UpdateIntakeRunnerPayload` model
15+
- `intake`:
16+
- [v0.1.2](services/intake/CHANGELOG.md#v012)
17+
- **Feature:** Add new field `partitioning` to `IntakeCatalog` model
18+
- [v0.1.1](services/intake/CHANGELOG.md#v011)
19+
- Mark attributes `max_message_size_ki_b` and `max_messages_per_hour` as optional (previously required) in `UpdateIntakeRunnerPayload` model
1720
- `ske`: [v1.3.0](services/ske/CHANGELOG.md#v130)
1821
- **Feature:** Add new field `kubernetes` to `Nodepool` model
1922
- `serviceaccount`: [v0.4.1](services/serviceaccount/CHANGELOG.md#v041)

services/intake/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.1.2
2+
- **Feature:** Add new field `partitioning` to `IntakeCatalog` model
3+
14
## v0.1.1
25
- Mark attributes `max_message_size_ki_b` and `max_messages_per_hour` as optional (previously required) in `UpdateIntakeRunnerPayload` model
36

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.1.1"
6+
version = "v0.1.2"
77
authors = [
88
"STACKIT Developer Tools <[email protected]>",
99
]

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

Lines changed: 3 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.2.3
10+
The version of the OpenAPI document: 1beta.3.1
1111
Generated by OpenAPI Generator (https://openapi-generator.tech)
1212
1313
Do not edit the class manually.
@@ -45,6 +45,7 @@
4545
"ListIntakeRunnersResponse",
4646
"ListIntakeUsersResponse",
4747
"ListIntakesResponse",
48+
"PartitioningType",
4849
"UpdateIntakePayload",
4950
"UpdateIntakeRunnerPayload",
5051
"UpdateIntakeUserPayload",
@@ -103,6 +104,7 @@
103104
from stackit.intake.models.list_intakes_response import (
104105
ListIntakesResponse as ListIntakesResponse,
105106
)
107+
from stackit.intake.models.partitioning_type import PartitioningType as PartitioningType
106108
from stackit.intake.models.update_intake_payload import (
107109
UpdateIntakePayload as UpdateIntakePayload,
108110
)

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.2.3
8+
The version of the OpenAPI document: 1beta.3.1
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.2.3
8+
The version of the OpenAPI document: 1beta.3.1
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.2.3
8+
The version of the OpenAPI document: 1beta.3.1
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.2.3
8+
The version of the OpenAPI document: 1beta.3.1
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.2.3
9+
The version of the OpenAPI document: 1beta.3.1
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111
1212
Do not edit the class manually.
@@ -31,6 +31,7 @@
3131
from stackit.intake.models.list_intake_runners_response import ListIntakeRunnersResponse
3232
from stackit.intake.models.list_intake_users_response import ListIntakeUsersResponse
3333
from stackit.intake.models.list_intakes_response import ListIntakesResponse
34+
from stackit.intake.models.partitioning_type import PartitioningType
3435
from stackit.intake.models.update_intake_payload import UpdateIntakePayload
3536
from stackit.intake.models.update_intake_runner_payload import UpdateIntakeRunnerPayload
3637
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.2.3
8+
The version of the OpenAPI document: 1beta.3.1
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

0 commit comments

Comments
 (0)