Skip to content

Commit f06e48e

Browse files
Generator: Update SDK /services/intake (#2508)
Co-authored-by: Ruben Hoenle <Ruben.Hoenle@stackit.cloud>
1 parent b33cc00 commit f06e48e

32 files changed

+74
-38
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,13 @@
1717
- new model classes `RunnerLabel` and `ListRunnerLabels`
1818
- [v0.5.1](services/git/CHANGELOG.md#v051)
1919
- **Bugfix:** Prevent year 0 timestamp issue
20-
- `intake`: [v0.2.1](services/intake/CHANGELOG.md#v021)
21-
- **Bugfix:** Prevent year 0 timestamp issue
20+
- `intake`:
21+
- [v0.3.0](services/intake/CHANGELOG.md#v030)
22+
- Validate `display_name` attribute regular expression using a field validator in model classes `CreateIntakePayload`, `CreateIntakeRunnerPayload` and `CreateIntakeUserPayload`
23+
- Set minimum length (`12`) for `password` attribute in model class `CreateIntakeUserPayload`
24+
- Set maximum length from `32` to `1024` for `table_name` attribute in `IntakeCatalog` and `IntakeCatalogPatch` model classes
25+
- [v0.2.1](services/intake/CHANGELOG.md#v021)
26+
- **Bugfix:** Prevent year 0 timestamp issue
2227
- `kms`: [v0.4.1](services/kms/CHANGELOG.md#v041)
2328
- **Bugfix:** Prevent year 0 timestamp issue
2429
- `modelserving`: [v0.2.2](services/modelserving/CHANGELOG.md#v022)

services/intake/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v0.3.0
2+
- Validate `display_name` attribute regular expression using a field validator in model classes `CreateIntakePayload`, `CreateIntakeRunnerPayload` and `CreateIntakeUserPayload`
3+
- Set minimum length (`12`) for `password` attribute in model class `CreateIntakeUserPayload`
4+
- Set maximum length from `32` to `1024` for `table_name` attribute in `IntakeCatalog` and `IntakeCatalogPatch` model classes
5+
16
## v0.2.1
27
- **Bugfix:** Prevent year 0 timestamp issue
38

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.2.1"
6+
version = "v0.3.0"
77
authors = [
88
"STACKIT Developer Tools <developer-tools@stackit.cloud>",
99
]

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

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

0 commit comments

Comments
 (0)