From 93758c303d36fe0e8c9126a4d8e4c8b1b79b029c Mon Sep 17 00:00:00 2001 From: SDK Generator Bot Date: Tue, 21 Jul 2026 08:19:06 +0000 Subject: [PATCH] Generate runcommand --- services/runcommand/oas_commit | 2 +- .../runcommand/src/stackit/runcommand/__init__.py | 13 +++++++------ .../src/stackit/runcommand/api/default_api.py | 12 ++++++------ .../runcommand/src/stackit/runcommand/api_client.py | 13 +++++++------ .../src/stackit/runcommand/api_response.py | 1 + .../src/stackit/runcommand/configuration.py | 13 +++++++------ .../runcommand/src/stackit/runcommand/exceptions.py | 12 ++++++------ .../src/stackit/runcommand/models/__init__.py | 12 ++++++------ .../stackit/runcommand/models/command_details.py | 12 ++++++------ .../stackit/runcommand/models/command_template.py | 12 ++++++------ .../runcommand/models/command_template_response.py | 12 ++++++------ .../runcommand/models/command_template_schema.py | 12 ++++++------ .../src/stackit/runcommand/models/commands.py | 12 ++++++------ .../runcommand/models/create_command_payload.py | 12 ++++++------ .../src/stackit/runcommand/models/error_response.py | 12 ++++++------ .../runcommand/models/get_commands_response.py | 12 ++++++------ .../src/stackit/runcommand/models/model_field.py | 12 ++++++------ .../runcommand/models/new_command_response.py | 12 ++++++------ .../stackit/runcommand/models/parameters_schema.py | 12 ++++++------ .../src/stackit/runcommand/models/properties.py | 12 ++++++------ services/runcommand/src/stackit/runcommand/rest.py | 13 +++++++------ 21 files changed, 120 insertions(+), 115 deletions(-) diff --git a/services/runcommand/oas_commit b/services/runcommand/oas_commit index e3713dde3..0f8ce352b 100644 --- a/services/runcommand/oas_commit +++ b/services/runcommand/oas_commit @@ -1 +1 @@ -0e64886dd0847341800d7191ed193b75413be998 +876a48fb56473c7c844baa697906d461c0675f47 diff --git a/services/runcommand/src/stackit/runcommand/__init__.py b/services/runcommand/src/stackit/runcommand/__init__.py index 870e9b3b8..2624da331 100644 --- a/services/runcommand/src/stackit/runcommand/__init__.py +++ b/services/runcommand/src/stackit/runcommand/__init__.py @@ -3,17 +3,18 @@ # flake8: noqa """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 + __version__ = "1.0.0" # Define package exports diff --git a/services/runcommand/src/stackit/runcommand/api/default_api.py b/services/runcommand/src/stackit/runcommand/api/default_api.py index 8f58f46e8..02c580819 100644 --- a/services/runcommand/src/stackit/runcommand/api/default_api.py +++ b/services/runcommand/src/stackit/runcommand/api/default_api.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from typing import Any, Dict, List, Optional, Tuple, Union diff --git a/services/runcommand/src/stackit/runcommand/api_client.py b/services/runcommand/src/stackit/runcommand/api_client.py index 9a04ca178..a936739de 100644 --- a/services/runcommand/src/stackit/runcommand/api_client.py +++ b/services/runcommand/src/stackit/runcommand/api_client.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 import datetime @@ -37,6 +37,7 @@ ApiException, ) + RequestSerialized = Tuple[str, str, Dict[str, str], Optional[str], List[str]] diff --git a/services/runcommand/src/stackit/runcommand/api_response.py b/services/runcommand/src/stackit/runcommand/api_response.py index ca801da0b..b3ba14a1d 100644 --- a/services/runcommand/src/stackit/runcommand/api_response.py +++ b/services/runcommand/src/stackit/runcommand/api_response.py @@ -6,6 +6,7 @@ from pydantic import BaseModel, Field, StrictBytes, StrictInt + T = TypeVar("T") diff --git a/services/runcommand/src/stackit/runcommand/configuration.py b/services/runcommand/src/stackit/runcommand/configuration.py index 00057289c..4f40b7f2d 100644 --- a/services/runcommand/src/stackit/runcommand/configuration.py +++ b/services/runcommand/src/stackit/runcommand/configuration.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 import sys @@ -19,6 +19,7 @@ import os + ServerVariablesT = Dict[str, str] diff --git a/services/runcommand/src/stackit/runcommand/exceptions.py b/services/runcommand/src/stackit/runcommand/exceptions.py index 3fd7dca79..f98c1d8eb 100644 --- a/services/runcommand/src/stackit/runcommand/exceptions.py +++ b/services/runcommand/src/stackit/runcommand/exceptions.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from typing import Any, Optional diff --git a/services/runcommand/src/stackit/runcommand/models/__init__.py b/services/runcommand/src/stackit/runcommand/models/__init__.py index 116dfaeaa..8fa483017 100644 --- a/services/runcommand/src/stackit/runcommand/models/__init__.py +++ b/services/runcommand/src/stackit/runcommand/models/__init__.py @@ -2,15 +2,15 @@ # flake8: noqa """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 # import models into model package diff --git a/services/runcommand/src/stackit/runcommand/models/command_details.py b/services/runcommand/src/stackit/runcommand/models/command_details.py index dfb4341d4..9ea71901e 100644 --- a/services/runcommand/src/stackit/runcommand/models/command_details.py +++ b/services/runcommand/src/stackit/runcommand/models/command_details.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/runcommand/src/stackit/runcommand/models/command_template.py b/services/runcommand/src/stackit/runcommand/models/command_template.py index 3af12530e..22c70f623 100644 --- a/services/runcommand/src/stackit/runcommand/models/command_template.py +++ b/services/runcommand/src/stackit/runcommand/models/command_template.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/runcommand/src/stackit/runcommand/models/command_template_response.py b/services/runcommand/src/stackit/runcommand/models/command_template_response.py index 2be665857..bcb6ec2db 100644 --- a/services/runcommand/src/stackit/runcommand/models/command_template_response.py +++ b/services/runcommand/src/stackit/runcommand/models/command_template_response.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/runcommand/src/stackit/runcommand/models/command_template_schema.py b/services/runcommand/src/stackit/runcommand/models/command_template_schema.py index ed2071337..7343ddf02 100644 --- a/services/runcommand/src/stackit/runcommand/models/command_template_schema.py +++ b/services/runcommand/src/stackit/runcommand/models/command_template_schema.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/runcommand/src/stackit/runcommand/models/commands.py b/services/runcommand/src/stackit/runcommand/models/commands.py index 09c952243..629ff1396 100644 --- a/services/runcommand/src/stackit/runcommand/models/commands.py +++ b/services/runcommand/src/stackit/runcommand/models/commands.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/runcommand/src/stackit/runcommand/models/create_command_payload.py b/services/runcommand/src/stackit/runcommand/models/create_command_payload.py index 7bf411c95..3b5e62cc6 100644 --- a/services/runcommand/src/stackit/runcommand/models/create_command_payload.py +++ b/services/runcommand/src/stackit/runcommand/models/create_command_payload.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/runcommand/src/stackit/runcommand/models/error_response.py b/services/runcommand/src/stackit/runcommand/models/error_response.py index 16bce2b6a..011e38fe3 100644 --- a/services/runcommand/src/stackit/runcommand/models/error_response.py +++ b/services/runcommand/src/stackit/runcommand/models/error_response.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/runcommand/src/stackit/runcommand/models/get_commands_response.py b/services/runcommand/src/stackit/runcommand/models/get_commands_response.py index 4e0dd2352..6806ecb0e 100644 --- a/services/runcommand/src/stackit/runcommand/models/get_commands_response.py +++ b/services/runcommand/src/stackit/runcommand/models/get_commands_response.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/runcommand/src/stackit/runcommand/models/model_field.py b/services/runcommand/src/stackit/runcommand/models/model_field.py index 062b6a3f5..9303e176f 100644 --- a/services/runcommand/src/stackit/runcommand/models/model_field.py +++ b/services/runcommand/src/stackit/runcommand/models/model_field.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/runcommand/src/stackit/runcommand/models/new_command_response.py b/services/runcommand/src/stackit/runcommand/models/new_command_response.py index ae28a1a4f..dae63ab81 100644 --- a/services/runcommand/src/stackit/runcommand/models/new_command_response.py +++ b/services/runcommand/src/stackit/runcommand/models/new_command_response.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/runcommand/src/stackit/runcommand/models/parameters_schema.py b/services/runcommand/src/stackit/runcommand/models/parameters_schema.py index 0a87c4177..d44f8899b 100644 --- a/services/runcommand/src/stackit/runcommand/models/parameters_schema.py +++ b/services/runcommand/src/stackit/runcommand/models/parameters_schema.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/runcommand/src/stackit/runcommand/models/properties.py b/services/runcommand/src/stackit/runcommand/models/properties.py index d6011eae5..0b1ec92f8 100644 --- a/services/runcommand/src/stackit/runcommand/models/properties.py +++ b/services/runcommand/src/stackit/runcommand/models/properties.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/runcommand/src/stackit/runcommand/rest.py b/services/runcommand/src/stackit/runcommand/rest.py index 50aae30fc..aa20faf33 100644 --- a/services/runcommand/src/stackit/runcommand/rest.py +++ b/services/runcommand/src/stackit/runcommand/rest.py @@ -1,15 +1,15 @@ # coding: utf-8 """ -STACKIT Run Commands Service API + STACKIT Run Commands Service API -API endpoints for the STACKIT Run Commands Service API + API endpoints for the STACKIT Run Commands Service API -The version of the OpenAPI document: 2.0 -Contact: support@stackit.de -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Contact: support@stackit.de + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 import io @@ -22,6 +22,7 @@ from stackit.runcommand.exceptions import ApiException, ApiValueError + RESTResponseType = requests.Response