diff --git a/services/runcommand/src/stackit/runcommand/__init__.py b/services/runcommand/src/stackit/runcommand/__init__.py index 086f8884..5ec28d7b 100644 --- a/services/runcommand/src/stackit/runcommand/__init__.py +++ b/services/runcommand/src/stackit/runcommand/__init__.py @@ -7,7 +7,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/runcommand/src/stackit/runcommand/api/default_api.py b/services/runcommand/src/stackit/runcommand/api/default_api.py index 128290e6..698a2b2e 100644 --- a/services/runcommand/src/stackit/runcommand/api/default_api.py +++ b/services/runcommand/src/stackit/runcommand/api/default_api.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -47,6 +47,7 @@ def create_command( self, project_id: Annotated[StrictStr, Field(description="ID of the project")], server_id: Annotated[StrictStr, Field(description="Server ID of the machine")], + region: Annotated[StrictStr, Field(description="region")], create_command_payload: Annotated[Optional[CreateCommandPayload], Field(description="Command to post")] = None, _request_timeout: Union[ None, @@ -66,6 +67,8 @@ def create_command( :type project_id: str :param server_id: Server ID of the machine (required) :type server_id: str + :param region: region (required) + :type region: str :param create_command_payload: Command to post :type create_command_payload: CreateCommandPayload :param _request_timeout: timeout setting for this request. If one @@ -93,6 +96,7 @@ def create_command( _param = self._create_command_serialize( project_id=project_id, server_id=server_id, + region=region, create_command_payload=create_command_payload, _request_auth=_request_auth, _content_type=_content_type, @@ -118,6 +122,7 @@ def create_command_with_http_info( self, project_id: Annotated[StrictStr, Field(description="ID of the project")], server_id: Annotated[StrictStr, Field(description="Server ID of the machine")], + region: Annotated[StrictStr, Field(description="region")], create_command_payload: Annotated[Optional[CreateCommandPayload], Field(description="Command to post")] = None, _request_timeout: Union[ None, @@ -137,6 +142,8 @@ def create_command_with_http_info( :type project_id: str :param server_id: Server ID of the machine (required) :type server_id: str + :param region: region (required) + :type region: str :param create_command_payload: Command to post :type create_command_payload: CreateCommandPayload :param _request_timeout: timeout setting for this request. If one @@ -164,6 +171,7 @@ def create_command_with_http_info( _param = self._create_command_serialize( project_id=project_id, server_id=server_id, + region=region, create_command_payload=create_command_payload, _request_auth=_request_auth, _content_type=_content_type, @@ -189,6 +197,7 @@ def create_command_without_preload_content( self, project_id: Annotated[StrictStr, Field(description="ID of the project")], server_id: Annotated[StrictStr, Field(description="Server ID of the machine")], + region: Annotated[StrictStr, Field(description="region")], create_command_payload: Annotated[Optional[CreateCommandPayload], Field(description="Command to post")] = None, _request_timeout: Union[ None, @@ -208,6 +217,8 @@ def create_command_without_preload_content( :type project_id: str :param server_id: Server ID of the machine (required) :type server_id: str + :param region: region (required) + :type region: str :param create_command_payload: Command to post :type create_command_payload: CreateCommandPayload :param _request_timeout: timeout setting for this request. If one @@ -235,6 +246,7 @@ def create_command_without_preload_content( _param = self._create_command_serialize( project_id=project_id, server_id=server_id, + region=region, create_command_payload=create_command_payload, _request_auth=_request_auth, _content_type=_content_type, @@ -255,6 +267,7 @@ def _create_command_serialize( self, project_id, server_id, + region, create_command_payload, _request_auth, _content_type, @@ -278,6 +291,8 @@ def _create_command_serialize( _path_params["projectId"] = project_id if server_id is not None: _path_params["serverId"] = server_id + if region is not None: + _path_params["region"] = region # process the query parameters # process the header parameters # process the form parameters @@ -302,7 +317,7 @@ def _create_command_serialize( return self.api_client.param_serialize( method="POST", - resource_path="/v1/projects/{projectId}/servers/{serverId}/commands", + resource_path="/v2/projects/{projectId}/regions/{region}/servers/{serverId}/commands", path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -319,6 +334,7 @@ def _create_command_serialize( def get_command( self, project_id: Annotated[StrictStr, Field(description="ID of the project")], + region: Annotated[StrictStr, Field(description="region")], server_id: Annotated[StrictStr, Field(description="Server ID of the machine")], command_id: Annotated[StrictStr, Field(description="ID of the command")], _request_timeout: Union[ @@ -337,6 +353,8 @@ def get_command( :param project_id: ID of the project (required) :type project_id: str + :param region: region (required) + :type region: str :param server_id: Server ID of the machine (required) :type server_id: str :param command_id: ID of the command (required) @@ -365,6 +383,7 @@ def get_command( _param = self._get_command_serialize( project_id=project_id, + region=region, server_id=server_id, command_id=command_id, _request_auth=_request_auth, @@ -390,6 +409,7 @@ def get_command( def get_command_with_http_info( self, project_id: Annotated[StrictStr, Field(description="ID of the project")], + region: Annotated[StrictStr, Field(description="region")], server_id: Annotated[StrictStr, Field(description="Server ID of the machine")], command_id: Annotated[StrictStr, Field(description="ID of the command")], _request_timeout: Union[ @@ -408,6 +428,8 @@ def get_command_with_http_info( :param project_id: ID of the project (required) :type project_id: str + :param region: region (required) + :type region: str :param server_id: Server ID of the machine (required) :type server_id: str :param command_id: ID of the command (required) @@ -436,6 +458,7 @@ def get_command_with_http_info( _param = self._get_command_serialize( project_id=project_id, + region=region, server_id=server_id, command_id=command_id, _request_auth=_request_auth, @@ -461,6 +484,7 @@ def get_command_with_http_info( def get_command_without_preload_content( self, project_id: Annotated[StrictStr, Field(description="ID of the project")], + region: Annotated[StrictStr, Field(description="region")], server_id: Annotated[StrictStr, Field(description="Server ID of the machine")], command_id: Annotated[StrictStr, Field(description="ID of the command")], _request_timeout: Union[ @@ -479,6 +503,8 @@ def get_command_without_preload_content( :param project_id: ID of the project (required) :type project_id: str + :param region: region (required) + :type region: str :param server_id: Server ID of the machine (required) :type server_id: str :param command_id: ID of the command (required) @@ -507,6 +533,7 @@ def get_command_without_preload_content( _param = self._get_command_serialize( project_id=project_id, + region=region, server_id=server_id, command_id=command_id, _request_auth=_request_auth, @@ -527,6 +554,7 @@ def get_command_without_preload_content( def _get_command_serialize( self, project_id, + region, server_id, command_id, _request_auth, @@ -549,6 +577,8 @@ def _get_command_serialize( # process the path parameters if project_id is not None: _path_params["projectId"] = project_id + if region is not None: + _path_params["region"] = region if server_id is not None: _path_params["serverId"] = server_id if command_id is not None: @@ -567,7 +597,7 @@ def _get_command_serialize( return self.api_client.param_serialize( method="GET", - resource_path="/v1/projects/{projectId}/servers/{serverId}/commands/{commandId}", + resource_path="/v2/projects/{projectId}/regions/{region}/servers/{serverId}/commands/{commandId}", path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -586,6 +616,7 @@ def get_command_template( project_id: Annotated[StrictStr, Field(description="ID of the project")], server_id: Annotated[StrictStr, Field(description="Server ID of the machine")], command_template_name: Annotated[StrictStr, Field(description="Name of the template")], + region: Annotated[StrictStr, Field(description="region")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -606,6 +637,8 @@ def get_command_template( :type server_id: str :param command_template_name: Name of the template (required) :type command_template_name: str + :param region: region (required) + :type region: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -632,6 +665,7 @@ def get_command_template( project_id=project_id, server_id=server_id, command_template_name=command_template_name, + region=region, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -657,6 +691,7 @@ def get_command_template_with_http_info( project_id: Annotated[StrictStr, Field(description="ID of the project")], server_id: Annotated[StrictStr, Field(description="Server ID of the machine")], command_template_name: Annotated[StrictStr, Field(description="Name of the template")], + region: Annotated[StrictStr, Field(description="region")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -677,6 +712,8 @@ def get_command_template_with_http_info( :type server_id: str :param command_template_name: Name of the template (required) :type command_template_name: str + :param region: region (required) + :type region: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -703,6 +740,7 @@ def get_command_template_with_http_info( project_id=project_id, server_id=server_id, command_template_name=command_template_name, + region=region, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -728,6 +766,7 @@ def get_command_template_without_preload_content( project_id: Annotated[StrictStr, Field(description="ID of the project")], server_id: Annotated[StrictStr, Field(description="Server ID of the machine")], command_template_name: Annotated[StrictStr, Field(description="Name of the template")], + region: Annotated[StrictStr, Field(description="region")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -748,6 +787,8 @@ def get_command_template_without_preload_content( :type server_id: str :param command_template_name: Name of the template (required) :type command_template_name: str + :param region: region (required) + :type region: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -774,6 +815,7 @@ def get_command_template_without_preload_content( project_id=project_id, server_id=server_id, command_template_name=command_template_name, + region=region, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -794,6 +836,7 @@ def _get_command_template_serialize( project_id, server_id, command_template_name, + region, _request_auth, _content_type, _headers, @@ -818,6 +861,8 @@ def _get_command_template_serialize( _path_params["serverId"] = server_id if command_template_name is not None: _path_params["commandTemplateName"] = command_template_name + if region is not None: + _path_params["region"] = region # process the query parameters # process the header parameters # process the form parameters @@ -832,7 +877,7 @@ def _get_command_template_serialize( return self.api_client.param_serialize( method="GET", - resource_path="/v1/projects/{projectId}/servers/{serverId}/command-templates/{commandTemplateName}", + resource_path="/v2/projects/{projectId}/regions/{region}/servers/{serverId}/command-templates/{commandTemplateName}", path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -1081,7 +1126,7 @@ def _list_command_templates_serialize( return self.api_client.param_serialize( method="GET", - resource_path="/v1/command-templates", + resource_path="/v2/command-templates", path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -1099,6 +1144,7 @@ def list_commands( self, project_id: Annotated[StrictStr, Field(description="ID of the project")], server_id: Annotated[StrictStr, Field(description="Server ID of the machine")], + region: Annotated[StrictStr, Field(description="region")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -1117,6 +1163,8 @@ def list_commands( :type project_id: str :param server_id: Server ID of the machine (required) :type server_id: str + :param region: region (required) + :type region: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -1142,6 +1190,7 @@ def list_commands( _param = self._list_commands_serialize( project_id=project_id, server_id=server_id, + region=region, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -1166,6 +1215,7 @@ def list_commands_with_http_info( self, project_id: Annotated[StrictStr, Field(description="ID of the project")], server_id: Annotated[StrictStr, Field(description="Server ID of the machine")], + region: Annotated[StrictStr, Field(description="region")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -1184,6 +1234,8 @@ def list_commands_with_http_info( :type project_id: str :param server_id: Server ID of the machine (required) :type server_id: str + :param region: region (required) + :type region: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -1209,6 +1261,7 @@ def list_commands_with_http_info( _param = self._list_commands_serialize( project_id=project_id, server_id=server_id, + region=region, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -1233,6 +1286,7 @@ def list_commands_without_preload_content( self, project_id: Annotated[StrictStr, Field(description="ID of the project")], server_id: Annotated[StrictStr, Field(description="Server ID of the machine")], + region: Annotated[StrictStr, Field(description="region")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -1251,6 +1305,8 @@ def list_commands_without_preload_content( :type project_id: str :param server_id: Server ID of the machine (required) :type server_id: str + :param region: region (required) + :type region: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -1276,6 +1332,7 @@ def list_commands_without_preload_content( _param = self._list_commands_serialize( project_id=project_id, server_id=server_id, + region=region, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -1295,6 +1352,7 @@ def _list_commands_serialize( self, project_id, server_id, + region, _request_auth, _content_type, _headers, @@ -1317,6 +1375,8 @@ def _list_commands_serialize( _path_params["projectId"] = project_id if server_id is not None: _path_params["serverId"] = server_id + if region is not None: + _path_params["region"] = region # process the query parameters # process the header parameters # process the form parameters @@ -1331,7 +1391,7 @@ def _list_commands_serialize( return self.api_client.param_serialize( method="GET", - resource_path="/v1/projects/{projectId}/servers/{serverId}/commands", + resource_path="/v2/projects/{projectId}/regions/{region}/servers/{serverId}/commands", path_params=_path_params, query_params=_query_params, header_params=_header_params, diff --git a/services/runcommand/src/stackit/runcommand/api_client.py b/services/runcommand/src/stackit/runcommand/api_client.py index c5a33cee..15c3c953 100644 --- a/services/runcommand/src/stackit/runcommand/api_client.py +++ b/services/runcommand/src/stackit/runcommand/api_client.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/runcommand/src/stackit/runcommand/configuration.py b/services/runcommand/src/stackit/runcommand/configuration.py index 08c625e5..67c2f937 100644 --- a/services/runcommand/src/stackit/runcommand/configuration.py +++ b/services/runcommand/src/stackit/runcommand/configuration.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -33,7 +33,7 @@ def __init__( ) """Constructor """ - self._base_path = "https://run-command.api.eu01.stackit.cloud" + self._base_path = "https://run-command.api.stackit.cloud" """Default Base url """ self.server_index = 0 if server_index is None else server_index @@ -57,13 +57,12 @@ def get_host_settings(self): """ return [ { - "url": "https://run-command.api.{region}stackit.cloud", + "url": "https://run-command.api.stackit.cloud", "description": "No description provided", "variables": { "region": { "description": "No description provided", - "default_value": "eu01.", - "enum_values": ["eu01."], + "default_value": "global", } }, } diff --git a/services/runcommand/src/stackit/runcommand/exceptions.py b/services/runcommand/src/stackit/runcommand/exceptions.py index 8a1abdbc..5e72b3c0 100644 --- a/services/runcommand/src/stackit/runcommand/exceptions.py +++ b/services/runcommand/src/stackit/runcommand/exceptions.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/runcommand/src/stackit/runcommand/models/__init__.py b/services/runcommand/src/stackit/runcommand/models/__init__.py index 275796aa..973ced42 100644 --- a/services/runcommand/src/stackit/runcommand/models/__init__.py +++ b/services/runcommand/src/stackit/runcommand/models/__init__.py @@ -6,7 +6,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/runcommand/src/stackit/runcommand/models/command_details.py b/services/runcommand/src/stackit/runcommand/models/command_details.py index d7578e0e..7b50b502 100644 --- a/services/runcommand/src/stackit/runcommand/models/command_details.py +++ b/services/runcommand/src/stackit/runcommand/models/command_details.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/runcommand/src/stackit/runcommand/models/command_template.py b/services/runcommand/src/stackit/runcommand/models/command_template.py index 58d6508f..3f2600d2 100644 --- a/services/runcommand/src/stackit/runcommand/models/command_template.py +++ b/services/runcommand/src/stackit/runcommand/models/command_template.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) 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 3355dfb2..00dcc0c7 100644 --- a/services/runcommand/src/stackit/runcommand/models/command_template_response.py +++ b/services/runcommand/src/stackit/runcommand/models/command_template_response.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) 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 c7c7c79a..323cf018 100644 --- a/services/runcommand/src/stackit/runcommand/models/command_template_schema.py +++ b/services/runcommand/src/stackit/runcommand/models/command_template_schema.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/runcommand/src/stackit/runcommand/models/commands.py b/services/runcommand/src/stackit/runcommand/models/commands.py index a89ecf69..c3836ce0 100644 --- a/services/runcommand/src/stackit/runcommand/models/commands.py +++ b/services/runcommand/src/stackit/runcommand/models/commands.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) 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 98c778fa..80a886ab 100644 --- a/services/runcommand/src/stackit/runcommand/models/create_command_payload.py +++ b/services/runcommand/src/stackit/runcommand/models/create_command_payload.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/runcommand/src/stackit/runcommand/models/error_response.py b/services/runcommand/src/stackit/runcommand/models/error_response.py index ffdab40f..3519fd03 100644 --- a/services/runcommand/src/stackit/runcommand/models/error_response.py +++ b/services/runcommand/src/stackit/runcommand/models/error_response.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) 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 5d53eb24..46119d20 100644 --- a/services/runcommand/src/stackit/runcommand/models/get_commands_response.py +++ b/services/runcommand/src/stackit/runcommand/models/get_commands_response.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/runcommand/src/stackit/runcommand/models/model_field.py b/services/runcommand/src/stackit/runcommand/models/model_field.py index e8c3c9d4..8a99ba04 100644 --- a/services/runcommand/src/stackit/runcommand/models/model_field.py +++ b/services/runcommand/src/stackit/runcommand/models/model_field.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) 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 e5414cfe..76d47f9b 100644 --- a/services/runcommand/src/stackit/runcommand/models/new_command_response.py +++ b/services/runcommand/src/stackit/runcommand/models/new_command_response.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/runcommand/src/stackit/runcommand/models/parameters_schema.py b/services/runcommand/src/stackit/runcommand/models/parameters_schema.py index 9e01f2c3..10c5c04a 100644 --- a/services/runcommand/src/stackit/runcommand/models/parameters_schema.py +++ b/services/runcommand/src/stackit/runcommand/models/parameters_schema.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/runcommand/src/stackit/runcommand/models/properties.py b/services/runcommand/src/stackit/runcommand/models/properties.py index aa3b6c5e..3f02114f 100644 --- a/services/runcommand/src/stackit/runcommand/models/properties.py +++ b/services/runcommand/src/stackit/runcommand/models/properties.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/runcommand/src/stackit/runcommand/rest.py b/services/runcommand/src/stackit/runcommand/rest.py index 289911d4..2f12fce6 100644 --- a/services/runcommand/src/stackit/runcommand/rest.py +++ b/services/runcommand/src/stackit/runcommand/rest.py @@ -5,7 +5,7 @@ API endpoints for the STACKIT Run Commands Service API - The version of the OpenAPI document: 1.0 + The version of the OpenAPI document: 2.0 Contact: support@stackit.de Generated by OpenAPI Generator (https://openapi-generator.tech)