|
21 | 21 | from revengai.models.analysis_create_request import AnalysisCreateRequest |
22 | 22 | from revengai.models.analysis_update_request import AnalysisUpdateRequest |
23 | 23 | from revengai.models.analysis_update_tags_request import AnalysisUpdateTagsRequest |
24 | | -from revengai.models.app_api_rest_v2_analyses_enums_order_by import AppApiRestV2AnalysesEnumsOrderBy |
25 | 24 | from revengai.models.base_response_analysis_create_response import BaseResponseAnalysisCreateResponse |
26 | 25 | from revengai.models.base_response_analysis_detail_response import BaseResponseAnalysisDetailResponse |
27 | 26 | from revengai.models.base_response_analysis_function_mapping import BaseResponseAnalysisFunctionMapping |
|
34 | 33 | from revengai.models.base_response_recent import BaseResponseRecent |
35 | 34 | from revengai.models.base_response_status import BaseResponseStatus |
36 | 35 | from revengai.models.base_response_upload_response import BaseResponseUploadResponse |
37 | | -from revengai.models.dynamic_execution_status_input import DynamicExecutionStatusInput |
38 | 36 | from revengai.models.model_name import ModelName |
39 | | -from revengai.models.order import Order |
40 | 37 | from revengai.models.re_analysis_form import ReAnalysisForm |
41 | 38 | from revengai.models.status_input import StatusInput |
42 | 39 | from revengai.models.upload_file_type import UploadFileType |
@@ -1940,13 +1937,13 @@ def list_analyses( |
1940 | 1937 | workspace: Annotated[Optional[List[Workspace]], Field(description="The workspace to be viewed")] = None, |
1941 | 1938 | status: Annotated[Optional[List[StatusInput]], Field(description="The status of the analysis")] = None, |
1942 | 1939 | model_name: Annotated[Optional[List[ModelName]], Field(description="Show analysis belonging to the model")] = None, |
1943 | | - dynamic_execution_status: Annotated[Optional[DynamicExecutionStatusInput], Field(description="Show analysis that have a dynamic execution with the given status")] = None, |
| 1940 | + dynamic_execution_status: Annotated[Optional[Any], Field(description="Show analysis that have a dynamic execution with the given status")] = None, |
1944 | 1941 | usernames: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Show analysis belonging to the user")] = None, |
1945 | 1942 | sha256_hash: Optional[StrictStr] = None, |
1946 | 1943 | limit: Optional[Annotated[int, Field(le=50, strict=True, ge=5)]] = None, |
1947 | 1944 | offset: Optional[StrictInt] = None, |
1948 | | - order_by: Optional[AppApiRestV2AnalysesEnumsOrderBy] = None, |
1949 | | - order: Optional[Order] = None, |
| 1945 | + order_by: Optional[Any] = None, |
| 1946 | + order: Optional[Any] = None, |
1950 | 1947 | _request_timeout: Union[ |
1951 | 1948 | None, |
1952 | 1949 | Annotated[StrictFloat, Field(gt=0)], |
@@ -2048,13 +2045,13 @@ def list_analyses_with_http_info( |
2048 | 2045 | workspace: Annotated[Optional[List[Workspace]], Field(description="The workspace to be viewed")] = None, |
2049 | 2046 | status: Annotated[Optional[List[StatusInput]], Field(description="The status of the analysis")] = None, |
2050 | 2047 | model_name: Annotated[Optional[List[ModelName]], Field(description="Show analysis belonging to the model")] = None, |
2051 | | - dynamic_execution_status: Annotated[Optional[DynamicExecutionStatusInput], Field(description="Show analysis that have a dynamic execution with the given status")] = None, |
| 2048 | + dynamic_execution_status: Annotated[Optional[Any], Field(description="Show analysis that have a dynamic execution with the given status")] = None, |
2052 | 2049 | usernames: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Show analysis belonging to the user")] = None, |
2053 | 2050 | sha256_hash: Optional[StrictStr] = None, |
2054 | 2051 | limit: Optional[Annotated[int, Field(le=50, strict=True, ge=5)]] = None, |
2055 | 2052 | offset: Optional[StrictInt] = None, |
2056 | | - order_by: Optional[AppApiRestV2AnalysesEnumsOrderBy] = None, |
2057 | | - order: Optional[Order] = None, |
| 2053 | + order_by: Optional[Any] = None, |
| 2054 | + order: Optional[Any] = None, |
2058 | 2055 | _request_timeout: Union[ |
2059 | 2056 | None, |
2060 | 2057 | Annotated[StrictFloat, Field(gt=0)], |
@@ -2156,13 +2153,13 @@ def list_analyses_without_preload_content( |
2156 | 2153 | workspace: Annotated[Optional[List[Workspace]], Field(description="The workspace to be viewed")] = None, |
2157 | 2154 | status: Annotated[Optional[List[StatusInput]], Field(description="The status of the analysis")] = None, |
2158 | 2155 | model_name: Annotated[Optional[List[ModelName]], Field(description="Show analysis belonging to the model")] = None, |
2159 | | - dynamic_execution_status: Annotated[Optional[DynamicExecutionStatusInput], Field(description="Show analysis that have a dynamic execution with the given status")] = None, |
| 2156 | + dynamic_execution_status: Annotated[Optional[Any], Field(description="Show analysis that have a dynamic execution with the given status")] = None, |
2160 | 2157 | usernames: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Show analysis belonging to the user")] = None, |
2161 | 2158 | sha256_hash: Optional[StrictStr] = None, |
2162 | 2159 | limit: Optional[Annotated[int, Field(le=50, strict=True, ge=5)]] = None, |
2163 | 2160 | offset: Optional[StrictInt] = None, |
2164 | | - order_by: Optional[AppApiRestV2AnalysesEnumsOrderBy] = None, |
2165 | | - order: Optional[Order] = None, |
| 2161 | + order_by: Optional[Any] = None, |
| 2162 | + order: Optional[Any] = None, |
2166 | 2163 | _request_timeout: Union[ |
2167 | 2164 | None, |
2168 | 2165 | Annotated[StrictFloat, Field(gt=0)], |
|
0 commit comments