|
24 | 24 | from cosmotech_api.models.run import Run |
25 | 25 | from cosmotech_api.models.run_data import RunData |
26 | 26 | from cosmotech_api.models.run_data_query import RunDataQuery |
27 | | -from cosmotech_api.models.run_logs import RunLogs |
28 | 27 | from cosmotech_api.models.run_status import RunStatus |
29 | 28 | from cosmotech_api.models.send_run_data_request import SendRunDataRequest |
30 | 29 |
|
@@ -674,7 +673,7 @@ def get_run_logs( |
674 | 673 | _content_type: Optional[StrictStr] = None, |
675 | 674 | _headers: Optional[Dict[StrictStr, Any]] = None, |
676 | 675 | _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, |
677 | | - ) -> RunLogs: |
| 676 | + ) -> str: |
678 | 677 | """get the logs for the Run |
679 | 678 |
|
680 | 679 |
|
@@ -720,7 +719,7 @@ def get_run_logs( |
720 | 719 | ) |
721 | 720 |
|
722 | 721 | _response_types_map: Dict[str, Optional[str]] = { |
723 | | - '200': "RunLogs", |
| 722 | + '200': "str", |
724 | 723 | } |
725 | 724 | response_data = self.api_client.call_api( |
726 | 725 | *_param, |
@@ -752,7 +751,7 @@ def get_run_logs_with_http_info( |
752 | 751 | _content_type: Optional[StrictStr] = None, |
753 | 752 | _headers: Optional[Dict[StrictStr, Any]] = None, |
754 | 753 | _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, |
755 | | - ) -> ApiResponse[RunLogs]: |
| 754 | + ) -> ApiResponse[str]: |
756 | 755 | """get the logs for the Run |
757 | 756 |
|
758 | 757 |
|
@@ -798,7 +797,7 @@ def get_run_logs_with_http_info( |
798 | 797 | ) |
799 | 798 |
|
800 | 799 | _response_types_map: Dict[str, Optional[str]] = { |
801 | | - '200': "RunLogs", |
| 800 | + '200': "str", |
802 | 801 | } |
803 | 802 | response_data = self.api_client.call_api( |
804 | 803 | *_param, |
@@ -876,7 +875,7 @@ def get_run_logs_without_preload_content( |
876 | 875 | ) |
877 | 876 |
|
878 | 877 | _response_types_map: Dict[str, Optional[str]] = { |
879 | | - '200': "RunLogs", |
| 878 | + '200': "str", |
880 | 879 | } |
881 | 880 | response_data = self.api_client.call_api( |
882 | 881 | *_param, |
@@ -930,8 +929,7 @@ def _get_run_logs_serialize( |
930 | 929 | if 'Accept' not in _header_params: |
931 | 930 | _header_params['Accept'] = self.api_client.select_header_accept( |
932 | 931 | [ |
933 | | - 'application/json', |
934 | | - 'application/yaml' |
| 932 | + 'text/plain' |
935 | 933 | ] |
936 | 934 | ) |
937 | 935 |
|
|
0 commit comments