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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## Release (2025-xx-xx)
- `intake`: [v0.2.0](services/intake/CHANGELOG.md#v020)
- **Feature:** Add response `IntakeRunnerResponse` to `UpdateIntakeRunnerExecute` request
- **Feature:** Add response `IntakeUserResponse` to `UpdateIntakeUserExecute` request
- `stackitmarketplace`:
- [v1.11.0](services/stackitmarketplace/CHANGELOG.md#v1110)
- **Feature:** Add new field `DemoUrl` to `CatalogProductDetail` model
Expand Down
4 changes: 4 additions & 0 deletions services/intake/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.2.0
- **Feature:** Add response `IntakeRunnerResponse` to `UpdateIntakeRunnerExecute` request
- **Feature:** Add response `IntakeUserResponse` to `UpdateIntakeUserExecute` request

## v0.1.2
- **Feature:** Add new field `partitioning` to `IntakeCatalog` model

Expand Down
2 changes: 1 addition & 1 deletion services/intake/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stackit-intake"

[tool.poetry]
name = "stackit-intake"
version = "v0.1.2"
version = "v0.2.0"
authors = [
"STACKIT Developer Tools <developer-tools@stackit.cloud>",
]
Expand Down
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.1
The version of the OpenAPI document: 1beta.3.2
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
30 changes: 19 additions & 11 deletions 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.1
The version of the OpenAPI document: 1beta.3.2
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -3877,7 +3877,7 @@ def update_intake_runner(
_content_type: Optional[StrictStr] = None,
_headers: Optional[Dict[StrictStr, Any]] = None,
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
) -> None:
) -> IntakeRunnerResponse:
"""update_intake_runner

Updates a intake runner within the project.
Expand Down Expand Up @@ -3924,7 +3924,7 @@ def update_intake_runner(
)

_response_types_map: Dict[str, Optional[str]] = {
"204": None,
"200": "IntakeRunnerResponse",
"400": None,
"401": None,
"409": None,
Expand Down Expand Up @@ -3955,7 +3955,7 @@ def update_intake_runner_with_http_info(
_content_type: Optional[StrictStr] = None,
_headers: Optional[Dict[StrictStr, Any]] = None,
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
) -> ApiResponse[None]:
) -> ApiResponse[IntakeRunnerResponse]:
"""update_intake_runner

Updates a intake runner within the project.
Expand Down Expand Up @@ -4002,7 +4002,7 @@ def update_intake_runner_with_http_info(
)

_response_types_map: Dict[str, Optional[str]] = {
"204": None,
"200": "IntakeRunnerResponse",
"400": None,
"401": None,
"409": None,
Expand Down Expand Up @@ -4080,7 +4080,7 @@ def update_intake_runner_without_preload_content(
)

_response_types_map: Dict[str, Optional[str]] = {
"204": None,
"200": "IntakeRunnerResponse",
"400": None,
"401": None,
"409": None,
Expand Down Expand Up @@ -4126,6 +4126,10 @@ def _update_intake_runner_serialize(
if update_intake_runner_payload is not None:
_body_params = update_intake_runner_payload

# set the HTTP header `Accept`
if "Accept" not in _header_params:
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])

# set the HTTP header `Content-Type`
if _content_type:
_header_params["Content-Type"] = _content_type
Expand Down Expand Up @@ -4171,7 +4175,7 @@ def update_intake_user(
_content_type: Optional[StrictStr] = None,
_headers: Optional[Dict[StrictStr, Any]] = None,
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
) -> None:
) -> IntakeUserResponse:
"""update_intake_user

Updates the given intake user.
Expand Down Expand Up @@ -4221,7 +4225,7 @@ def update_intake_user(
)

_response_types_map: Dict[str, Optional[str]] = {
"204": None,
"200": "IntakeUserResponse",
"401": None,
"404": None,
"409": None,
Expand Down Expand Up @@ -4253,7 +4257,7 @@ def update_intake_user_with_http_info(
_content_type: Optional[StrictStr] = None,
_headers: Optional[Dict[StrictStr, Any]] = None,
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
) -> ApiResponse[None]:
) -> ApiResponse[IntakeUserResponse]:
"""update_intake_user

Updates the given intake user.
Expand Down Expand Up @@ -4303,7 +4307,7 @@ def update_intake_user_with_http_info(
)

_response_types_map: Dict[str, Optional[str]] = {
"204": None,
"200": "IntakeUserResponse",
"401": None,
"404": None,
"409": None,
Expand Down Expand Up @@ -4385,7 +4389,7 @@ def update_intake_user_without_preload_content(
)

_response_types_map: Dict[str, Optional[str]] = {
"204": None,
"200": "IntakeUserResponse",
"401": None,
"404": None,
"409": None,
Expand Down Expand Up @@ -4434,6 +4438,10 @@ def _update_intake_user_serialize(
if update_intake_user_payload is not None:
_body_params = update_intake_user_payload

# set the HTTP header `Accept`
if "Accept" not in _header_params:
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])

# set the HTTP header `Content-Type`
if _content_type:
_header_params["Content-Type"] = _content_type
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.1
The version of the OpenAPI document: 1beta.3.2
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/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.1
The version of the OpenAPI document: 1beta.3.2
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/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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
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.1
The version of the OpenAPI document: 1beta.3.2
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down