Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Release (2026-xx-xx)

- `intake`: [v0.5.0](services/intake/CHANGELOG.md#v050)
- **Breaking Change**: Switch from regional to global API server URL (region can't be set via `Configuration` / env-variable anymore).
- `iaas`: [v1.2.0](services/iaas/CHANGELOG.md#v120)
- **Feature:** Add `description` attribute to ModelClasses:
- `Backup`, `CreateBackupPayload`, `UpdateBackupPayload`
Expand Down
3 changes: 3 additions & 0 deletions services/intake/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.5.0
- **Breaking Change**: Switch from regional to global API server URL (region can't be set via `Configuration` / env-variable anymore).

## v0.4.0
- **Feature:** Add new enum class `PartitioningUpdateType`
- **Feature:** Add attributes `partition_by` and `partitioning` to `IntakeCatalogPatch` model class
Expand Down
1 change: 1 addition & 0 deletions services/intake/oas_commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cb550f3c2129447568c2855337b1874968e033bb
4 changes: 2 additions & 2 deletions services/intake/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "stackit-intake"
version = "v0.4.0"
version = "v0.5.0"
description = "STACKIT Intake API"
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
requires-python = ">=3.9,<4"
Expand Down Expand Up @@ -107,5 +107,5 @@ inline-quotes = '"'
docstring-quotes = '"""'
multiline-quotes = '"""'
ban-relative-imports = true
# Exclude generated code
# Exclude generated code
extend-exclude = [ "src/stackit/*/models/*", "src/stackit/*/api/*", "src/stackit/*/*.py" ]
2 changes: 1 addition & 1 deletion services/intake/src/stackit/intake/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion services/intake/src/stackit/intake/api/default_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion services/intake/src/stackit/intake/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
9 changes: 4 additions & 5 deletions services/intake/src/stackit/intake/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -53,7 +53,7 @@ def __init__(
)
"""Constructor
"""
self._base_path = "https://intake.api.eu01.stackit.cloud"
self._base_path = "https://intake.api.stackit.cloud"
"""Default Base url
"""
self.server_index = 0 if server_index is None else server_index
Expand All @@ -77,13 +77,12 @@ def get_host_settings(self) -> List[HostSetting]:
"""
return [
{
"url": "https://intake.api.{region}stackit.cloud",
"url": "https://intake.api.stackit.cloud",
"description": "No description provided",
"variables": {
"region": {
"description": "No description provided",
"default_value": "eu01.",
"enum_values": ["eu01."],
"default_value": "global",
}
},
}
Expand Down
2 changes: 1 addition & 1 deletion services/intake/src/stackit/intake/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion services/intake/src/stackit/intake/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion services/intake/src/stackit/intake/models/dremio_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion services/intake/src/stackit/intake/models/user_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion services/intake/src/stackit/intake/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing Intakes.

The version of the OpenAPI document: 1beta.3.5
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Loading