eval-studio-client 0.8.0a1__py3-none-any.whl → 0.8.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- eval_studio_client/__init__.py +2 -1
- eval_studio_client/api/__init__.py +125 -120
- eval_studio_client/api/api/__init__.py +1 -0
- eval_studio_client/api/api/dashboard_service_api.py +71 -71
- eval_studio_client/api/api/document_service_api.py +64 -64
- eval_studio_client/api/api/evaluation_service_api.py +42 -42
- eval_studio_client/api/api/evaluator_service_api.py +50 -50
- eval_studio_client/api/api/info_service_api.py +8 -8
- eval_studio_client/api/api/leaderboard_service_api.py +126 -126
- eval_studio_client/api/api/model_service_api.py +92 -92
- eval_studio_client/api/api/operation_progress_service_api.py +8 -8
- eval_studio_client/api/api/operation_service_api.py +36 -36
- eval_studio_client/api/api/perturbation_service_api.py +8 -8
- eval_studio_client/api/api/perturbator_service_api.py +15 -15
- eval_studio_client/api/api/prompt_generation_service_api.py +321 -0
- eval_studio_client/api/api/test_case_service_api.py +57 -57
- eval_studio_client/api/api/test_class_service_api.py +15 -15
- eval_studio_client/api/api/test_lab_service_api.py +22 -22
- eval_studio_client/api/api/test_service_api.py +376 -92
- eval_studio_client/api/api/who_am_i_service_api.py +8 -8
- eval_studio_client/api/api_client.py +1 -1
- eval_studio_client/api/configuration.py +1 -1
- eval_studio_client/api/docs/DashboardServiceApi.md +38 -38
- eval_studio_client/api/docs/DocumentServiceApi.md +34 -34
- eval_studio_client/api/docs/EvaluationServiceApi.md +22 -22
- eval_studio_client/api/docs/EvaluatorServiceApi.md +26 -26
- eval_studio_client/api/docs/InfoServiceApi.md +4 -4
- eval_studio_client/api/docs/LeaderboardServiceApi.md +66 -66
- eval_studio_client/api/docs/ModelServiceApi.md +50 -50
- eval_studio_client/api/docs/OperationProgressServiceApi.md +4 -4
- eval_studio_client/api/docs/OperationServiceApi.md +20 -20
- eval_studio_client/api/docs/PerturbationServiceApi.md +4 -4
- eval_studio_client/api/docs/PerturbationServiceCreatePerturbationRequest.md +3 -3
- eval_studio_client/api/docs/PerturbatorServiceApi.md +8 -8
- eval_studio_client/api/docs/PromptGenerationServiceApi.md +78 -0
- eval_studio_client/api/docs/PromptGenerationServiceAutoGeneratePromptsRequest.md +35 -0
- eval_studio_client/api/docs/RequiredTheDashboardToUpdate.md +1 -1
- eval_studio_client/api/docs/RequiredTheLeaderboardToUpdate.md +4 -4
- eval_studio_client/api/docs/RequiredTheModelToUpdate.md +1 -1
- eval_studio_client/api/docs/TestCaseServiceApi.md +31 -31
- eval_studio_client/api/docs/TestClassServiceApi.md +8 -8
- eval_studio_client/api/docs/TestLabServiceApi.md +11 -11
- eval_studio_client/api/docs/TestServiceApi.md +119 -49
- eval_studio_client/api/docs/TestServiceGenerateTestCasesRequest.md +33 -0
- eval_studio_client/api/docs/TestServicePerturbTestRequest.md +1 -1
- eval_studio_client/api/docs/V1BatchCreateLeaderboardsRequest.md +31 -0
- eval_studio_client/api/docs/V1BatchCreateLeaderboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteDashboardsRequest.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteDashboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteDocumentsRequest.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteDocumentsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteEvaluatorsRequest.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteEvaluatorsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteLeaderboardsRequest.md +30 -0
- eval_studio_client/api/docs/V1BatchDeleteLeaderboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteModelsRequest.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteModelsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteTestCasesResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaBatchDeleteTestsRequest.md → V1BatchDeleteTestsRequest.md} +8 -8
- eval_studio_client/api/docs/V1BatchDeleteTestsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchGetDashboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchGetDocumentsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchGetLeaderboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchGetModelsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchGetOperationsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchGetTestsResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaBatchImportLeaderboardRequest.md → V1BatchImportLeaderboardRequest.md} +9 -9
- eval_studio_client/api/docs/V1BatchImportLeaderboardResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaBatchImportTestsRequest.md → V1BatchImportTestsRequest.md} +8 -8
- eval_studio_client/api/docs/V1BatchImportTestsResponse.md +29 -0
- eval_studio_client/api/docs/V1CheckBaseModelsResponse.md +30 -0
- eval_studio_client/api/docs/{V1alphaCollectionInfo.md → V1CollectionInfo.md} +8 -8
- eval_studio_client/api/docs/V1CreateDashboardResponse.md +29 -0
- eval_studio_client/api/docs/V1CreateDocumentResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaCreateEvaluationRequest.md → V1CreateEvaluationRequest.md} +10 -10
- eval_studio_client/api/docs/V1CreateEvaluatorResponse.md +29 -0
- eval_studio_client/api/docs/V1CreateLeaderboardRequest.md +29 -0
- eval_studio_client/api/docs/V1CreateLeaderboardResponse.md +29 -0
- eval_studio_client/api/docs/V1CreateLeaderboardWithoutCacheResponse.md +29 -0
- eval_studio_client/api/docs/V1CreateModelResponse.md +29 -0
- eval_studio_client/api/docs/V1CreatePerturbationResponse.md +29 -0
- eval_studio_client/api/docs/V1CreateTestCaseResponse.md +29 -0
- eval_studio_client/api/docs/V1CreateTestLabResponse.md +29 -0
- eval_studio_client/api/docs/V1CreateTestResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaDashboard.md → V1Dashboard.md} +9 -9
- eval_studio_client/api/docs/{V1alphaDashboardStatus.md → V1DashboardStatus.md} +1 -1
- eval_studio_client/api/docs/V1DeleteDashboardResponse.md +29 -0
- eval_studio_client/api/docs/V1DeleteDocumentResponse.md +29 -0
- eval_studio_client/api/docs/V1DeleteEvaluatorResponse.md +29 -0
- eval_studio_client/api/docs/V1DeleteLeaderboardResponse.md +29 -0
- eval_studio_client/api/docs/V1DeleteModelResponse.md +29 -0
- eval_studio_client/api/docs/V1DeleteTestCaseResponse.md +29 -0
- eval_studio_client/api/docs/V1DeleteTestResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaDocument.md → V1Document.md} +8 -8
- eval_studio_client/api/docs/V1EvaluationTest.md +32 -0
- eval_studio_client/api/docs/{V1alphaEvaluator.md → V1Evaluator.md} +10 -9
- eval_studio_client/api/docs/{V1alphaEvaluatorParamType.md → V1EvaluatorParamType.md} +1 -1
- eval_studio_client/api/docs/{V1alphaEvaluatorParameter.md → V1EvaluatorParameter.md} +9 -9
- eval_studio_client/api/docs/{V1alphaEvaluatorView.md → V1EvaluatorView.md} +1 -1
- eval_studio_client/api/docs/V1FinalizeOperationResponse.md +29 -0
- eval_studio_client/api/docs/V1FindAllTestCasesByIDResponse.md +29 -0
- eval_studio_client/api/docs/V1FindTestLabResponse.md +29 -0
- eval_studio_client/api/docs/V1GenerateTestCasesResponse.md +29 -0
- eval_studio_client/api/docs/V1GetDashboardResponse.md +29 -0
- eval_studio_client/api/docs/V1GetDocumentResponse.md +29 -0
- eval_studio_client/api/docs/V1GetEvaluatorResponse.md +29 -0
- eval_studio_client/api/docs/V1GetInfoResponse.md +29 -0
- eval_studio_client/api/docs/V1GetLeaderboardResponse.md +29 -0
- eval_studio_client/api/docs/V1GetModelResponse.md +29 -0
- eval_studio_client/api/docs/V1GetOperationProgressByParentResponse.md +29 -0
- eval_studio_client/api/docs/V1GetOperationResponse.md +29 -0
- eval_studio_client/api/docs/V1GetPerturbatorResponse.md +29 -0
- eval_studio_client/api/docs/V1GetTestCaseResponse.md +29 -0
- eval_studio_client/api/docs/V1GetTestClassResponse.md +29 -0
- eval_studio_client/api/docs/V1GetTestResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaImportEvaluationRequest.md → V1ImportEvaluationRequest.md} +9 -9
- eval_studio_client/api/docs/{V1alphaImportLeaderboardRequest.md → V1ImportLeaderboardRequest.md} +9 -9
- eval_studio_client/api/docs/V1ImportLeaderboardResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaInfo.md → V1Info.md} +8 -8
- eval_studio_client/api/docs/{V1alphaInsight.md → V1Insight.md} +8 -8
- eval_studio_client/api/docs/{V1alphaLeaderboard.md → V1Leaderboard.md} +12 -12
- eval_studio_client/api/docs/{V1alphaLeaderboardStatus.md → V1LeaderboardStatus.md} +1 -1
- eval_studio_client/api/docs/{V1alphaLeaderboardType.md → V1LeaderboardType.md} +1 -1
- eval_studio_client/api/docs/{V1alphaLeaderboardView.md → V1LeaderboardView.md} +1 -1
- eval_studio_client/api/docs/V1ListBaseModelsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListDashboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListDocumentsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListEvaluatorsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListLLMModelsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListLeaderboardsResponse.md +30 -0
- eval_studio_client/api/docs/V1ListModelCollectionsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListModelsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListMostRecentDashboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListMostRecentLeaderboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListMostRecentModelsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListMostRecentTestsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListOperationsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListPerturbatorsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListRAGCollectionsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListTestCasesResponse.md +29 -0
- eval_studio_client/api/docs/V1ListTestClassesResponse.md +29 -0
- eval_studio_client/api/docs/V1ListTestsResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaModel.md → V1Model.md} +9 -9
- eval_studio_client/api/docs/{V1alphaModelType.md → V1ModelType.md} +1 -1
- eval_studio_client/api/docs/{V1alphaOperation.md → V1Operation.md} +8 -8
- eval_studio_client/api/docs/{V1alphaOperationProgress.md → V1OperationProgress.md} +8 -8
- eval_studio_client/api/docs/V1PerturbTestResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaPerturbator.md → V1Perturbator.md} +8 -8
- eval_studio_client/api/docs/V1PerturbatorConfiguration.md +32 -0
- eval_studio_client/api/docs/{V1alphaPerturbatorIntensity.md → V1PerturbatorIntensity.md} +1 -1
- eval_studio_client/api/docs/{V1alphaProblemAndAction.md → V1ProblemAndAction.md} +8 -8
- eval_studio_client/api/docs/{V1alphaTest.md → V1Test.md} +8 -8
- eval_studio_client/api/docs/{V1alphaTestCase.md → V1TestCase.md} +8 -8
- eval_studio_client/api/docs/{V1alphaTestCaseRelationship.md → V1TestCaseRelationship.md} +8 -8
- eval_studio_client/api/docs/V1TestCasesGenerator.md +11 -0
- eval_studio_client/api/docs/{V1alphaTestClass.md → V1TestClass.md} +9 -9
- eval_studio_client/api/docs/{V1alphaTestClassType.md → V1TestClassType.md} +1 -1
- eval_studio_client/api/docs/{V1alphaTestLab.md → V1TestLab.md} +8 -8
- eval_studio_client/api/docs/V1UpdateDashboardResponse.md +29 -0
- eval_studio_client/api/docs/V1UpdateDocumentResponse.md +29 -0
- eval_studio_client/api/docs/V1UpdateLeaderboardResponse.md +29 -0
- eval_studio_client/api/docs/V1UpdateModelResponse.md +29 -0
- eval_studio_client/api/docs/V1UpdateOperationResponse.md +29 -0
- eval_studio_client/api/docs/V1UpdateTestCaseResponse.md +29 -0
- eval_studio_client/api/docs/V1UpdateTestResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaWhoAmIResponse.md → V1WhoAmIResponse.md} +8 -8
- eval_studio_client/api/docs/WhoAmIServiceApi.md +4 -4
- eval_studio_client/api/exceptions.py +1 -1
- eval_studio_client/api/models/__init__.py +124 -120
- eval_studio_client/api/models/perturbation_service_create_perturbation_request.py +10 -10
- eval_studio_client/api/models/prompt_generation_service_auto_generate_prompts_request.py +104 -0
- eval_studio_client/api/models/protobuf_any.py +1 -1
- eval_studio_client/api/models/required_the_dashboard_to_update.py +3 -3
- eval_studio_client/api/models/required_the_document_to_update.py +1 -1
- eval_studio_client/api/models/required_the_leaderboard_to_update.py +11 -11
- eval_studio_client/api/models/required_the_model_to_update.py +3 -3
- eval_studio_client/api/models/required_the_operation_to_finalize.py +1 -1
- eval_studio_client/api/models/required_the_operation_to_update.py +1 -1
- eval_studio_client/api/models/required_the_test_case_to_update.py +1 -1
- eval_studio_client/api/models/required_the_test_to_update.py +1 -1
- eval_studio_client/api/models/rpc_status.py +1 -1
- eval_studio_client/api/models/test_case_service_batch_delete_test_cases_request.py +1 -1
- eval_studio_client/api/models/test_service_generate_test_cases_request.py +96 -0
- eval_studio_client/api/models/test_service_perturb_test_request.py +4 -4
- eval_studio_client/api/models/{v1alpha_batch_create_leaderboards_request.py → v1_batch_create_leaderboards_request.py} +8 -8
- eval_studio_client/api/models/{v1alpha_update_operation_response.py → v1_batch_create_leaderboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_dashboards_request.py → v1_batch_delete_dashboards_request.py} +5 -5
- eval_studio_client/api/models/{v1alpha_list_dashboards_response.py → v1_batch_delete_dashboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_documents_request.py → v1_batch_delete_documents_request.py} +5 -5
- eval_studio_client/api/models/{v1alpha_list_documents_response.py → v1_batch_delete_documents_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_evaluators_request.py → v1_batch_delete_evaluators_request.py} +5 -5
- eval_studio_client/api/models/{v1alpha_list_evaluators_response.py → v1_batch_delete_evaluators_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_leaderboards_request.py → v1_batch_delete_leaderboards_request.py} +7 -7
- eval_studio_client/api/models/{v1alpha_batch_get_leaderboards_response.py → v1_batch_delete_leaderboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_models_request.py → v1_batch_delete_models_request.py} +5 -5
- eval_studio_client/api/models/{v1alpha_list_models_response.py → v1_batch_delete_models_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_test_cases_response.py → v1_batch_delete_test_cases_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_tests_request.py → v1_batch_delete_tests_request.py} +5 -5
- eval_studio_client/api/models/{v1alpha_list_tests_response.py → v1_batch_delete_tests_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_get_dashboards_response.py → v1_batch_get_dashboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_get_documents_response.py → v1_batch_get_documents_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_leaderboards_response.py → v1_batch_get_leaderboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_get_models_response.py → v1_batch_get_models_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_operations_response.py → v1_batch_get_operations_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_get_tests_response.py → v1_batch_get_tests_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_import_leaderboard_request.py → v1_batch_import_leaderboard_request.py} +7 -7
- eval_studio_client/api/models/{v1alpha_import_leaderboard_response.py → v1_batch_import_leaderboard_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_import_tests_request.py → v1_batch_import_tests_request.py} +5 -5
- eval_studio_client/api/models/{v1alpha_batch_delete_tests_response.py → v1_batch_import_tests_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_check_base_models_response.py → v1_check_base_models_response.py} +5 -5
- eval_studio_client/api/models/{v1alpha_collection_info.py → v1_collection_info.py} +4 -4
- eval_studio_client/api/models/{v1alpha_get_dashboard_response.py → v1_create_dashboard_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_get_document_response.py → v1_create_document_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_evaluation_request.py → v1_create_evaluation_request.py} +11 -11
- eval_studio_client/api/models/{v1alpha_get_evaluator_response.py → v1_create_evaluator_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_get_leaderboard_response.py → v1_create_leaderboard_request.py} +8 -8
- eval_studio_client/api/models/{v1alpha_get_operation_response.py → v1_create_leaderboard_response.py} +8 -8
- eval_studio_client/api/models/v1_create_leaderboard_without_cache_response.py +91 -0
- eval_studio_client/api/models/{v1alpha_get_model_response.py → v1_create_model_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_perturbation_response.py → v1_create_perturbation_response.py} +5 -5
- eval_studio_client/api/models/{v1alpha_get_test_case_response.py → v1_create_test_case_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_find_test_lab_response.py → v1_create_test_lab_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_get_test_response.py → v1_create_test_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_dashboard.py → v1_dashboard.py} +7 -7
- eval_studio_client/api/models/{v1alpha_dashboard_status.py → v1_dashboard_status.py} +3 -3
- eval_studio_client/api/models/{v1alpha_update_dashboard_response.py → v1_delete_dashboard_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_update_document_response.py → v1_delete_document_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_evaluator_response.py → v1_delete_evaluator_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_leaderboard_request.py → v1_delete_leaderboard_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_model_response.py → v1_delete_model_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_delete_test_case_response.py → v1_delete_test_case_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_test_response.py → v1_delete_test_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_document.py → v1_document.py} +5 -5
- eval_studio_client/api/models/{v1alpha_evaluation_test.py → v1_evaluation_test.py} +10 -10
- eval_studio_client/api/models/{v1alpha_evaluator.py → v1_evaluator.py} +14 -10
- eval_studio_client/api/models/{v1alpha_evaluator_param_type.py → v1_evaluator_param_type.py} +3 -3
- eval_studio_client/api/models/{v1alpha_evaluator_parameter.py → v1_evaluator_parameter.py} +7 -7
- eval_studio_client/api/models/{v1alpha_evaluator_view.py → v1_evaluator_view.py} +3 -3
- eval_studio_client/api/models/{v1alpha_create_leaderboard_response.py → v1_finalize_operation_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_find_all_test_cases_by_id_response.py → v1_find_all_test_cases_by_id_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_test_lab_response.py → v1_find_test_lab_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_finalize_operation_response.py → v1_generate_test_cases_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_dashboard_response.py → v1_get_dashboard_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_delete_document_response.py → v1_get_document_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_delete_evaluator_response.py → v1_get_evaluator_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_get_info_response.py → v1_get_info_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_update_leaderboard_response.py → v1_get_leaderboard_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_update_model_response.py → v1_get_model_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_get_operation_progress_by_parent_response.py → v1_get_operation_progress_by_parent_response.py} +8 -8
- eval_studio_client/api/models/v1_get_operation_response.py +91 -0
- eval_studio_client/api/models/{v1alpha_get_perturbator_response.py → v1_get_perturbator_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_test_case_response.py → v1_get_test_case_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_get_test_class_response.py → v1_get_test_class_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_update_test_response.py → v1_get_test_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_import_evaluation_request.py → v1_import_evaluation_request.py} +8 -8
- eval_studio_client/api/models/{v1alpha_import_leaderboard_request.py → v1_import_leaderboard_request.py} +7 -7
- eval_studio_client/api/models/v1_import_leaderboard_response.py +91 -0
- eval_studio_client/api/models/{v1alpha_info.py → v1_info.py} +5 -5
- eval_studio_client/api/models/{v1alpha_insight.py → v1_insight.py} +4 -4
- eval_studio_client/api/models/{v1alpha_leaderboard.py → v1_leaderboard.py} +15 -15
- eval_studio_client/api/models/{v1alpha_leaderboard_status.py → v1_leaderboard_status.py} +3 -3
- eval_studio_client/api/models/{v1alpha_leaderboard_type.py → v1_leaderboard_type.py} +3 -3
- eval_studio_client/api/models/{v1alpha_leaderboard_view.py → v1_leaderboard_view.py} +3 -3
- eval_studio_client/api/models/{v1alpha_list_base_models_response.py → v1_list_base_models_response.py} +5 -5
- eval_studio_client/api/models/{v1alpha_batch_delete_dashboards_response.py → v1_list_dashboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_documents_response.py → v1_list_documents_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_evaluators_response.py → v1_list_evaluators_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_leaderboards_response.py → v1_list_leaderboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_llm_models_response.py → v1_list_llm_models_response.py} +5 -5
- eval_studio_client/api/models/{v1alpha_list_model_collections_response.py → v1_list_model_collections_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_models_response.py → v1_list_models_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_most_recent_dashboards_response.py → v1_list_most_recent_dashboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_most_recent_leaderboards_response.py → v1_list_most_recent_leaderboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_most_recent_models_response.py → v1_list_most_recent_models_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_import_tests_response.py → v1_list_most_recent_tests_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_get_operations_response.py → v1_list_operations_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_perturbators_response.py → v1_list_perturbators_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_rag_collections_response.py → v1_list_rag_collections_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_test_cases_response.py → v1_list_test_cases_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_test_classes_response.py → v1_list_test_classes_response.py} +8 -8
- eval_studio_client/api/models/v1_list_tests_response.py +95 -0
- eval_studio_client/api/models/{v1alpha_model.py → v1_model.py} +7 -7
- eval_studio_client/api/models/{v1alpha_model_type.py → v1_model_type.py} +3 -3
- eval_studio_client/api/models/{v1alpha_operation.py → v1_operation.py} +4 -4
- eval_studio_client/api/models/{v1alpha_operation_progress.py → v1_operation_progress.py} +5 -5
- eval_studio_client/api/models/{v1alpha_delete_test_response.py → v1_perturb_test_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_perturbator.py → v1_perturbator.py} +5 -5
- eval_studio_client/api/models/{v1alpha_perturbator_configuration.py → v1_perturbator_configuration.py} +6 -6
- eval_studio_client/api/models/{v1alpha_perturbator_intensity.py → v1_perturbator_intensity.py} +4 -4
- eval_studio_client/api/models/{v1alpha_problem_and_action.py → v1_problem_and_action.py} +5 -5
- eval_studio_client/api/models/{v1alpha_test.py → v1_test.py} +5 -5
- eval_studio_client/api/models/{v1alpha_test_case.py → v1_test_case.py} +5 -5
- eval_studio_client/api/models/{v1alpha_test_case_relationship.py → v1_test_case_relationship.py} +5 -5
- eval_studio_client/api/models/v1_test_cases_generator.py +50 -0
- eval_studio_client/api/models/{v1alpha_test_class.py → v1_test_class.py} +7 -7
- eval_studio_client/api/models/{v1alpha_test_class_type.py → v1_test_class_type.py} +3 -3
- eval_studio_client/api/models/{v1alpha_test_lab.py → v1_test_lab.py} +5 -5
- eval_studio_client/api/models/{v1alpha_delete_dashboard_response.py → v1_update_dashboard_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_document_response.py → v1_update_document_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_delete_leaderboard_response.py → v1_update_leaderboard_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_delete_model_response.py → v1_update_model_response.py} +8 -8
- eval_studio_client/api/models/v1_update_operation_response.py +91 -0
- eval_studio_client/api/models/{v1alpha_update_test_case_response.py → v1_update_test_case_response.py} +8 -8
- eval_studio_client/api/models/v1_update_test_response.py +91 -0
- eval_studio_client/api/models/{v1alpha_who_am_i_response.py → v1_who_am_i_response.py} +5 -5
- eval_studio_client/api/rest.py +1 -1
- eval_studio_client/api/test/test_dashboard_service_api.py +1 -1
- eval_studio_client/api/test/test_document_service_api.py +1 -1
- eval_studio_client/api/test/test_evaluation_service_api.py +1 -1
- eval_studio_client/api/test/test_evaluator_service_api.py +1 -1
- eval_studio_client/api/test/test_info_service_api.py +1 -1
- eval_studio_client/api/test/test_leaderboard_service_api.py +1 -1
- eval_studio_client/api/test/test_model_service_api.py +1 -1
- eval_studio_client/api/test/test_operation_progress_service_api.py +1 -1
- eval_studio_client/api/test/test_operation_service_api.py +1 -1
- eval_studio_client/api/test/test_perturbation_service_api.py +1 -1
- eval_studio_client/api/test/test_perturbation_service_create_perturbation_request.py +4 -4
- eval_studio_client/api/test/test_perturbator_service_api.py +1 -1
- eval_studio_client/api/test/test_prompt_generation_service_api.py +37 -0
- eval_studio_client/api/test/test_prompt_generation_service_auto_generate_prompts_request.py +75 -0
- eval_studio_client/api/test/test_protobuf_any.py +1 -1
- eval_studio_client/api/test/test_required_the_dashboard_to_update.py +1 -1
- eval_studio_client/api/test/test_required_the_document_to_update.py +1 -1
- eval_studio_client/api/test/test_required_the_leaderboard_to_update.py +3 -3
- eval_studio_client/api/test/test_required_the_model_to_update.py +1 -1
- eval_studio_client/api/test/test_required_the_operation_to_finalize.py +1 -1
- eval_studio_client/api/test/test_required_the_operation_to_update.py +1 -1
- eval_studio_client/api/test/test_required_the_test_case_to_update.py +1 -1
- eval_studio_client/api/test/test_required_the_test_to_update.py +1 -1
- eval_studio_client/api/test/test_rpc_status.py +1 -1
- eval_studio_client/api/test/test_test_case_service_api.py +1 -1
- eval_studio_client/api/test/test_test_case_service_batch_delete_test_cases_request.py +1 -1
- eval_studio_client/api/test/test_test_class_service_api.py +1 -1
- eval_studio_client/api/test/test_test_lab_service_api.py +1 -1
- eval_studio_client/api/test/test_test_service_api.py +7 -1
- eval_studio_client/api/test/test_test_service_generate_test_cases_request.py +57 -0
- eval_studio_client/api/test/test_test_service_perturb_test_request.py +2 -2
- eval_studio_client/api/test/{test_v1alpha_batch_create_leaderboards_request.py → test_v1_batch_create_leaderboards_request.py} +16 -16
- eval_studio_client/api/test/{test_v1alpha_create_leaderboard_response.py → test_v1_batch_create_leaderboards_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_delete_models_request.py → test_v1_batch_delete_dashboards_request.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_batch_get_dashboards_response.py → test_v1_batch_delete_dashboards_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_delete_documents_request.py → test_v1_batch_delete_documents_request.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_batch_get_documents_response.py → test_v1_batch_delete_documents_response.py} +13 -13
- eval_studio_client/api/test/test_v1_batch_delete_evaluators_request.py +53 -0
- eval_studio_client/api/test/{test_v1alpha_batch_delete_evaluators_response.py → test_v1_batch_delete_evaluators_response.py} +15 -14
- eval_studio_client/api/test/{test_v1alpha_batch_delete_leaderboards_request.py → test_v1_batch_delete_leaderboards_request.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_batch_get_leaderboards_response.py → test_v1_batch_delete_leaderboards_response.py} +15 -15
- eval_studio_client/api/test/test_v1_batch_delete_models_request.py +53 -0
- eval_studio_client/api/test/{test_v1alpha_batch_get_models_response.py → test_v1_batch_delete_models_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_delete_test_cases_response.py → test_v1_batch_delete_test_cases_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_delete_tests_request.py → test_v1_batch_delete_tests_request.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_batch_get_tests_response.py → test_v1_batch_delete_tests_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_dashboards_response.py → test_v1_batch_get_dashboards_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_documents_response.py → test_v1_batch_get_documents_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_delete_leaderboards_response.py → test_v1_batch_get_leaderboards_response.py} +15 -15
- eval_studio_client/api/test/{test_v1alpha_list_models_response.py → test_v1_batch_get_models_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_operations_response.py → test_v1_batch_get_operations_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_tests_response.py → test_v1_batch_get_tests_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_import_leaderboard_request.py → test_v1_batch_import_leaderboard_request.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_import_leaderboard_response.py → test_v1_batch_import_leaderboard_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_import_tests_request.py → test_v1_batch_import_tests_request.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_batch_import_tests_response.py → test_v1_batch_import_tests_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_check_base_models_response.py → test_v1_check_base_models_response.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_collection_info.py → test_v1_collection_info.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_get_dashboard_response.py → test_v1_create_dashboard_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_get_document_response.py → test_v1_create_document_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_create_evaluation_request.py → test_v1_create_evaluation_request.py} +16 -16
- eval_studio_client/api/test/{test_v1alpha_get_evaluator_response.py → test_v1_create_evaluator_response.py} +15 -14
- eval_studio_client/api/test/{test_v1alpha_get_leaderboard_response.py → test_v1_create_leaderboard_request.py} +15 -15
- eval_studio_client/api/test/{test_v1alpha_update_operation_response.py → test_v1_create_leaderboard_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_import_leaderboard_response.py → test_v1_create_leaderboard_without_cache_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_get_model_response.py → test_v1_create_model_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_create_perturbation_response.py → test_v1_create_perturbation_response.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_get_test_case_response.py → test_v1_create_test_case_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_find_test_lab_response.py → test_v1_create_test_lab_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_get_test_response.py → test_v1_create_test_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_dashboard.py → test_v1_dashboard.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_evaluator_view.py → test_v1_dashboard_status.py} +7 -7
- eval_studio_client/api/test/{test_v1alpha_update_dashboard_response.py → test_v1_delete_dashboard_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_update_document_response.py → test_v1_delete_document_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_delete_evaluator_response.py → test_v1_delete_evaluator_response.py} +15 -14
- eval_studio_client/api/test/{test_v1alpha_create_leaderboard_request.py → test_v1_delete_leaderboard_response.py} +15 -15
- eval_studio_client/api/test/{test_v1alpha_delete_model_response.py → test_v1_delete_model_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_create_test_case_response.py → test_v1_delete_test_case_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_create_test_response.py → test_v1_delete_test_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_document.py → test_v1_document.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_evaluation_test.py → test_v1_evaluation_test.py} +14 -14
- eval_studio_client/api/test/{test_v1alpha_evaluator.py → test_v1_evaluator.py} +14 -13
- eval_studio_client/api/test/{test_v1alpha_test_class_type.py → test_v1_evaluator_param_type.py} +7 -7
- eval_studio_client/api/test/{test_v1alpha_evaluator_parameter.py → test_v1_evaluator_parameter.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_model_type.py → test_v1_evaluator_view.py} +7 -7
- eval_studio_client/api/test/{test_v1alpha_get_operation_response.py → test_v1_finalize_operation_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_find_all_test_cases_by_id_response.py → test_v1_find_all_test_cases_by_id_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_create_test_lab_response.py → test_v1_find_test_lab_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_finalize_operation_response.py → test_v1_generate_test_cases_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_create_dashboard_response.py → test_v1_get_dashboard_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_delete_document_response.py → test_v1_get_document_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_create_evaluator_response.py → test_v1_get_evaluator_response.py} +15 -14
- eval_studio_client/api/test/{test_v1alpha_get_info_response.py → test_v1_get_info_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_delete_leaderboard_response.py → test_v1_get_leaderboard_response.py} +15 -15
- eval_studio_client/api/test/{test_v1alpha_create_model_response.py → test_v1_get_model_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_get_operation_progress_by_parent_response.py → test_v1_get_operation_progress_by_parent_response.py} +13 -13
- eval_studio_client/api/test/test_v1_get_operation_response.py +71 -0
- eval_studio_client/api/test/{test_v1alpha_get_perturbator_response.py → test_v1_get_perturbator_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_delete_test_case_response.py → test_v1_get_test_case_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_get_test_class_response.py → test_v1_get_test_class_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_delete_test_response.py → test_v1_get_test_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_import_evaluation_request.py → test_v1_import_evaluation_request.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_import_leaderboard_request.py → test_v1_import_leaderboard_request.py} +12 -12
- eval_studio_client/api/test/test_v1_import_leaderboard_response.py +71 -0
- eval_studio_client/api/test/{test_v1alpha_info.py → test_v1_info.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_insight.py → test_v1_insight.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_leaderboard.py → test_v1_leaderboard.py} +14 -14
- eval_studio_client/api/test/{test_v1alpha_dashboard_status.py → test_v1_leaderboard_status.py} +7 -7
- eval_studio_client/api/test/test_v1_leaderboard_type.py +33 -0
- eval_studio_client/api/test/test_v1_leaderboard_view.py +33 -0
- eval_studio_client/api/test/{test_v1alpha_list_base_models_response.py → test_v1_list_base_models_response.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_batch_delete_dashboards_response.py → test_v1_list_dashboards_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_delete_documents_response.py → test_v1_list_documents_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_evaluators_response.py → test_v1_list_evaluators_response.py} +15 -14
- eval_studio_client/api/test/{test_v1alpha_list_leaderboards_response.py → test_v1_list_leaderboards_response.py} +15 -15
- eval_studio_client/api/test/{test_v1alpha_list_llm_models_response.py → test_v1_list_llm_models_response.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_list_rag_collections_response.py → test_v1_list_model_collections_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_delete_models_response.py → test_v1_list_models_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_most_recent_dashboards_response.py → test_v1_list_most_recent_dashboards_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_most_recent_leaderboards_response.py → test_v1_list_most_recent_leaderboards_response.py} +15 -15
- eval_studio_client/api/test/{test_v1alpha_list_most_recent_models_response.py → test_v1_list_most_recent_models_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_delete_tests_response.py → test_v1_list_most_recent_tests_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_get_operations_response.py → test_v1_list_operations_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_perturbators_response.py → test_v1_list_perturbators_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_model_collections_response.py → test_v1_list_rag_collections_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_test_cases_response.py → test_v1_list_test_cases_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_test_classes_response.py → test_v1_list_test_classes_response.py} +13 -13
- eval_studio_client/api/test/test_v1_list_tests_response.py +69 -0
- eval_studio_client/api/test/{test_v1alpha_model.py → test_v1_model.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_leaderboard_view.py → test_v1_model_type.py} +7 -7
- eval_studio_client/api/test/{test_v1alpha_operation.py → test_v1_operation.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_operation_progress.py → test_v1_operation_progress.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_update_test_response.py → test_v1_perturb_test_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_perturbator.py → test_v1_perturbator.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_perturbator_configuration.py → test_v1_perturbator_configuration.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_leaderboard_type.py → test_v1_perturbator_intensity.py} +7 -7
- eval_studio_client/api/test/{test_v1alpha_problem_and_action.py → test_v1_problem_and_action.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_test.py → test_v1_test.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_test_case.py → test_v1_test_case.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_test_case_relationship.py → test_v1_test_case_relationship.py} +12 -12
- eval_studio_client/api/test/test_v1_test_cases_generator.py +33 -0
- eval_studio_client/api/test/{test_v1alpha_test_class.py → test_v1_test_class.py} +12 -12
- eval_studio_client/api/test/test_v1_test_class_type.py +33 -0
- eval_studio_client/api/test/{test_v1alpha_test_lab.py → test_v1_test_lab.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_delete_dashboard_response.py → test_v1_update_dashboard_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_create_document_response.py → test_v1_update_document_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_update_leaderboard_response.py → test_v1_update_leaderboard_response.py} +15 -15
- eval_studio_client/api/test/{test_v1alpha_update_model_response.py → test_v1_update_model_response.py} +13 -13
- eval_studio_client/api/test/test_v1_update_operation_response.py +71 -0
- eval_studio_client/api/test/{test_v1alpha_update_test_case_response.py → test_v1_update_test_case_response.py} +13 -13
- eval_studio_client/api/test/test_v1_update_test_response.py +67 -0
- eval_studio_client/api/test/{test_v1alpha_who_am_i_response.py → test_v1_who_am_i_response.py} +12 -12
- eval_studio_client/api/test/test_who_am_i_service_api.py +1 -1
- eval_studio_client/dashboards.py +23 -1
- eval_studio_client/documents.py +3 -3
- eval_studio_client/evaluators.py +1 -1
- eval_studio_client/gen/openapiv2/eval_studio.swagger.json +568 -387
- eval_studio_client/insights.py +1 -1
- eval_studio_client/leaderboards.py +11 -13
- eval_studio_client/models.py +61 -29
- eval_studio_client/perturbators.py +5 -7
- eval_studio_client/problems.py +1 -1
- eval_studio_client/test_labs.py +2 -2
- eval_studio_client/tests.py +225 -8
- {eval_studio_client-0.8.0a1.dist-info → eval_studio_client-0.8.2.dist-info}/METADATA +2 -2
- eval_studio_client-0.8.2.dist-info/RECORD +485 -0
- {eval_studio_client-0.8.0a1.dist-info → eval_studio_client-0.8.2.dist-info}/WHEEL +1 -1
- eval_studio_client/api/docs/V1alphaBatchCreateLeaderboardsRequest.md +0 -31
- eval_studio_client/api/docs/V1alphaBatchCreateLeaderboardsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteDashboardsRequest.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteDashboardsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteDocumentsRequest.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteDocumentsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteEvaluatorsRequest.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteEvaluatorsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteLeaderboardsRequest.md +0 -30
- eval_studio_client/api/docs/V1alphaBatchDeleteLeaderboardsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteModelsRequest.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteModelsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteTestCasesResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteTestsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchGetDashboardsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchGetDocumentsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchGetLeaderboardsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchGetModelsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchGetOperationsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchGetTestsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchImportLeaderboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchImportTestsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCheckBaseModelsResponse.md +0 -30
- eval_studio_client/api/docs/V1alphaCreateDashboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateDocumentResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateEvaluatorResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateLeaderboardRequest.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateLeaderboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateLeaderboardWithoutCacheResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateModelResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreatePerturbationResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateTestCaseResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateTestLabResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateTestResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaDeleteDashboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaDeleteDocumentResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaDeleteEvaluatorResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaDeleteLeaderboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaDeleteModelResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaDeleteTestCaseResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaDeleteTestResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaEvaluationTest.md +0 -32
- eval_studio_client/api/docs/V1alphaFinalizeOperationResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaFindAllTestCasesByIDResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaFindTestLabResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetDashboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetDocumentResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetEvaluatorResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetInfoResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetLeaderboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetModelResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetOperationProgressByParentResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetOperationResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetPerturbatorResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetTestCaseResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetTestClassResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetTestResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaImportLeaderboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListBaseModelsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListDashboardsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListDocumentsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListEvaluatorsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListLLMModelsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListLeaderboardsResponse.md +0 -30
- eval_studio_client/api/docs/V1alphaListModelCollectionsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListModelsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListMostRecentDashboardsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListMostRecentLeaderboardsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListMostRecentModelsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListMostRecentTestsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListOperationsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListPerturbatorsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListRAGCollectionsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListTestCasesResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListTestClassesResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListTestsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaPerturbTestResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaPerturbatorConfiguration.md +0 -32
- eval_studio_client/api/docs/V1alphaUpdateDashboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaUpdateDocumentResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaUpdateLeaderboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaUpdateModelResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaUpdateOperationResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaUpdateTestCaseResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaUpdateTestResponse.md +0 -29
- eval_studio_client/api/models/v1alpha_batch_create_leaderboards_response.py +0 -91
- eval_studio_client/api/models/v1alpha_batch_import_leaderboard_response.py +0 -91
- eval_studio_client/api/models/v1alpha_create_leaderboard_without_cache_response.py +0 -91
- eval_studio_client/api/models/v1alpha_list_most_recent_tests_response.py +0 -95
- eval_studio_client/api/models/v1alpha_perturb_test_response.py +0 -91
- eval_studio_client/api/test/test_v1alpha_batch_create_leaderboards_response.py +0 -71
- eval_studio_client/api/test/test_v1alpha_batch_delete_dashboards_request.py +0 -53
- eval_studio_client/api/test/test_v1alpha_batch_delete_evaluators_request.py +0 -53
- eval_studio_client/api/test/test_v1alpha_create_leaderboard_without_cache_response.py +0 -71
- eval_studio_client/api/test/test_v1alpha_evaluator_param_type.py +0 -33
- eval_studio_client/api/test/test_v1alpha_leaderboard_status.py +0 -33
- eval_studio_client/api/test/test_v1alpha_list_most_recent_tests_response.py +0 -69
- eval_studio_client/api/test/test_v1alpha_perturb_test_response.py +0 -67
- eval_studio_client/api/test/test_v1alpha_perturbator_intensity.py +0 -33
- eval_studio_client-0.8.0a1.dist-info/RECORD +0 -470
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
|
|
3
3
|
"""
|
|
4
|
-
ai/h2o/eval_studio/
|
|
4
|
+
ai/h2o/eval_studio/v1/collection.proto
|
|
5
5
|
|
|
6
6
|
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
|
|
@@ -20,20 +20,22 @@ from pydantic import Field, StrictBool, StrictInt, StrictStr, field_validator
|
|
|
20
20
|
from typing import List, Optional
|
|
21
21
|
from typing_extensions import Annotated
|
|
22
22
|
from eval_studio_client.api.models.required_the_test_to_update import RequiredTheTestToUpdate
|
|
23
|
+
from eval_studio_client.api.models.test_service_generate_test_cases_request import TestServiceGenerateTestCasesRequest
|
|
23
24
|
from eval_studio_client.api.models.test_service_perturb_test_request import TestServicePerturbTestRequest
|
|
24
|
-
from eval_studio_client.api.models.
|
|
25
|
-
from eval_studio_client.api.models.
|
|
26
|
-
from eval_studio_client.api.models.
|
|
27
|
-
from eval_studio_client.api.models.
|
|
28
|
-
from eval_studio_client.api.models.
|
|
29
|
-
from eval_studio_client.api.models.
|
|
30
|
-
from eval_studio_client.api.models.
|
|
31
|
-
from eval_studio_client.api.models.
|
|
32
|
-
from eval_studio_client.api.models.
|
|
33
|
-
from eval_studio_client.api.models.
|
|
34
|
-
from eval_studio_client.api.models.
|
|
35
|
-
from eval_studio_client.api.models.
|
|
36
|
-
from eval_studio_client.api.models.
|
|
25
|
+
from eval_studio_client.api.models.v1_batch_delete_tests_request import V1BatchDeleteTestsRequest
|
|
26
|
+
from eval_studio_client.api.models.v1_batch_delete_tests_response import V1BatchDeleteTestsResponse
|
|
27
|
+
from eval_studio_client.api.models.v1_batch_get_tests_response import V1BatchGetTestsResponse
|
|
28
|
+
from eval_studio_client.api.models.v1_batch_import_tests_request import V1BatchImportTestsRequest
|
|
29
|
+
from eval_studio_client.api.models.v1_batch_import_tests_response import V1BatchImportTestsResponse
|
|
30
|
+
from eval_studio_client.api.models.v1_create_test_response import V1CreateTestResponse
|
|
31
|
+
from eval_studio_client.api.models.v1_delete_test_response import V1DeleteTestResponse
|
|
32
|
+
from eval_studio_client.api.models.v1_generate_test_cases_response import V1GenerateTestCasesResponse
|
|
33
|
+
from eval_studio_client.api.models.v1_get_test_response import V1GetTestResponse
|
|
34
|
+
from eval_studio_client.api.models.v1_list_most_recent_tests_response import V1ListMostRecentTestsResponse
|
|
35
|
+
from eval_studio_client.api.models.v1_list_tests_response import V1ListTestsResponse
|
|
36
|
+
from eval_studio_client.api.models.v1_perturb_test_response import V1PerturbTestResponse
|
|
37
|
+
from eval_studio_client.api.models.v1_test import V1Test
|
|
38
|
+
from eval_studio_client.api.models.v1_update_test_response import V1UpdateTestResponse
|
|
37
39
|
|
|
38
40
|
from eval_studio_client.api.api_client import ApiClient, RequestSerialized
|
|
39
41
|
from eval_studio_client.api.api_response import ApiResponse
|
|
@@ -56,7 +58,7 @@ class TestServiceApi:
|
|
|
56
58
|
@validate_call
|
|
57
59
|
def test_service_batch_delete_tests(
|
|
58
60
|
self,
|
|
59
|
-
body:
|
|
61
|
+
body: V1BatchDeleteTestsRequest,
|
|
60
62
|
_request_timeout: Union[
|
|
61
63
|
None,
|
|
62
64
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -69,12 +71,12 @@ class TestServiceApi:
|
|
|
69
71
|
_content_type: Optional[StrictStr] = None,
|
|
70
72
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
71
73
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
72
|
-
) ->
|
|
74
|
+
) -> V1BatchDeleteTestsResponse:
|
|
73
75
|
"""test_service_batch_delete_tests
|
|
74
76
|
|
|
75
77
|
|
|
76
78
|
:param body: (required)
|
|
77
|
-
:type body:
|
|
79
|
+
:type body: V1BatchDeleteTestsRequest
|
|
78
80
|
:param _request_timeout: timeout setting for this request. If one
|
|
79
81
|
number provided, it will be total request
|
|
80
82
|
timeout. It can also be a pair (tuple) of
|
|
@@ -106,7 +108,7 @@ class TestServiceApi:
|
|
|
106
108
|
)
|
|
107
109
|
|
|
108
110
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
109
|
-
'200': "
|
|
111
|
+
'200': "V1BatchDeleteTestsResponse",
|
|
110
112
|
}
|
|
111
113
|
response_data = self.api_client.call_api(
|
|
112
114
|
*_param,
|
|
@@ -122,7 +124,7 @@ class TestServiceApi:
|
|
|
122
124
|
@validate_call
|
|
123
125
|
def test_service_batch_delete_tests_with_http_info(
|
|
124
126
|
self,
|
|
125
|
-
body:
|
|
127
|
+
body: V1BatchDeleteTestsRequest,
|
|
126
128
|
_request_timeout: Union[
|
|
127
129
|
None,
|
|
128
130
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -135,12 +137,12 @@ class TestServiceApi:
|
|
|
135
137
|
_content_type: Optional[StrictStr] = None,
|
|
136
138
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
137
139
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
138
|
-
) -> ApiResponse[
|
|
140
|
+
) -> ApiResponse[V1BatchDeleteTestsResponse]:
|
|
139
141
|
"""test_service_batch_delete_tests
|
|
140
142
|
|
|
141
143
|
|
|
142
144
|
:param body: (required)
|
|
143
|
-
:type body:
|
|
145
|
+
:type body: V1BatchDeleteTestsRequest
|
|
144
146
|
:param _request_timeout: timeout setting for this request. If one
|
|
145
147
|
number provided, it will be total request
|
|
146
148
|
timeout. It can also be a pair (tuple) of
|
|
@@ -172,7 +174,7 @@ class TestServiceApi:
|
|
|
172
174
|
)
|
|
173
175
|
|
|
174
176
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
175
|
-
'200': "
|
|
177
|
+
'200': "V1BatchDeleteTestsResponse",
|
|
176
178
|
}
|
|
177
179
|
response_data = self.api_client.call_api(
|
|
178
180
|
*_param,
|
|
@@ -188,7 +190,7 @@ class TestServiceApi:
|
|
|
188
190
|
@validate_call
|
|
189
191
|
def test_service_batch_delete_tests_without_preload_content(
|
|
190
192
|
self,
|
|
191
|
-
body:
|
|
193
|
+
body: V1BatchDeleteTestsRequest,
|
|
192
194
|
_request_timeout: Union[
|
|
193
195
|
None,
|
|
194
196
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -206,7 +208,7 @@ class TestServiceApi:
|
|
|
206
208
|
|
|
207
209
|
|
|
208
210
|
:param body: (required)
|
|
209
|
-
:type body:
|
|
211
|
+
:type body: V1BatchDeleteTestsRequest
|
|
210
212
|
:param _request_timeout: timeout setting for this request. If one
|
|
211
213
|
number provided, it will be total request
|
|
212
214
|
timeout. It can also be a pair (tuple) of
|
|
@@ -238,7 +240,7 @@ class TestServiceApi:
|
|
|
238
240
|
)
|
|
239
241
|
|
|
240
242
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
241
|
-
'200': "
|
|
243
|
+
'200': "V1BatchDeleteTestsResponse",
|
|
242
244
|
}
|
|
243
245
|
response_data = self.api_client.call_api(
|
|
244
246
|
*_param,
|
|
@@ -304,7 +306,7 @@ class TestServiceApi:
|
|
|
304
306
|
|
|
305
307
|
return self.api_client.param_serialize(
|
|
306
308
|
method='POST',
|
|
307
|
-
resource_path='/
|
|
309
|
+
resource_path='/v1/tests:batchDelete',
|
|
308
310
|
path_params=_path_params,
|
|
309
311
|
query_params=_query_params,
|
|
310
312
|
header_params=_header_params,
|
|
@@ -336,7 +338,7 @@ class TestServiceApi:
|
|
|
336
338
|
_content_type: Optional[StrictStr] = None,
|
|
337
339
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
338
340
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
339
|
-
) ->
|
|
341
|
+
) -> V1BatchGetTestsResponse:
|
|
340
342
|
"""test_service_batch_get_tests
|
|
341
343
|
|
|
342
344
|
|
|
@@ -373,7 +375,7 @@ class TestServiceApi:
|
|
|
373
375
|
)
|
|
374
376
|
|
|
375
377
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
376
|
-
'200': "
|
|
378
|
+
'200': "V1BatchGetTestsResponse",
|
|
377
379
|
}
|
|
378
380
|
response_data = self.api_client.call_api(
|
|
379
381
|
*_param,
|
|
@@ -402,7 +404,7 @@ class TestServiceApi:
|
|
|
402
404
|
_content_type: Optional[StrictStr] = None,
|
|
403
405
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
404
406
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
405
|
-
) -> ApiResponse[
|
|
407
|
+
) -> ApiResponse[V1BatchGetTestsResponse]:
|
|
406
408
|
"""test_service_batch_get_tests
|
|
407
409
|
|
|
408
410
|
|
|
@@ -439,7 +441,7 @@ class TestServiceApi:
|
|
|
439
441
|
)
|
|
440
442
|
|
|
441
443
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
442
|
-
'200': "
|
|
444
|
+
'200': "V1BatchGetTestsResponse",
|
|
443
445
|
}
|
|
444
446
|
response_data = self.api_client.call_api(
|
|
445
447
|
*_param,
|
|
@@ -505,7 +507,7 @@ class TestServiceApi:
|
|
|
505
507
|
)
|
|
506
508
|
|
|
507
509
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
508
|
-
'200': "
|
|
510
|
+
'200': "V1BatchGetTestsResponse",
|
|
509
511
|
}
|
|
510
512
|
response_data = self.api_client.call_api(
|
|
511
513
|
*_param,
|
|
@@ -561,7 +563,7 @@ class TestServiceApi:
|
|
|
561
563
|
|
|
562
564
|
return self.api_client.param_serialize(
|
|
563
565
|
method='GET',
|
|
564
|
-
resource_path='/
|
|
566
|
+
resource_path='/v1/tests:batchGet',
|
|
565
567
|
path_params=_path_params,
|
|
566
568
|
query_params=_query_params,
|
|
567
569
|
header_params=_header_params,
|
|
@@ -580,7 +582,7 @@ class TestServiceApi:
|
|
|
580
582
|
@validate_call
|
|
581
583
|
def test_service_batch_import_tests(
|
|
582
584
|
self,
|
|
583
|
-
body:
|
|
585
|
+
body: V1BatchImportTestsRequest,
|
|
584
586
|
_request_timeout: Union[
|
|
585
587
|
None,
|
|
586
588
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -593,12 +595,12 @@ class TestServiceApi:
|
|
|
593
595
|
_content_type: Optional[StrictStr] = None,
|
|
594
596
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
595
597
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
596
|
-
) ->
|
|
598
|
+
) -> V1BatchImportTestsResponse:
|
|
597
599
|
"""test_service_batch_import_tests
|
|
598
600
|
|
|
599
601
|
|
|
600
602
|
:param body: (required)
|
|
601
|
-
:type body:
|
|
603
|
+
:type body: V1BatchImportTestsRequest
|
|
602
604
|
:param _request_timeout: timeout setting for this request. If one
|
|
603
605
|
number provided, it will be total request
|
|
604
606
|
timeout. It can also be a pair (tuple) of
|
|
@@ -630,7 +632,7 @@ class TestServiceApi:
|
|
|
630
632
|
)
|
|
631
633
|
|
|
632
634
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
633
|
-
'200': "
|
|
635
|
+
'200': "V1BatchImportTestsResponse",
|
|
634
636
|
}
|
|
635
637
|
response_data = self.api_client.call_api(
|
|
636
638
|
*_param,
|
|
@@ -646,7 +648,7 @@ class TestServiceApi:
|
|
|
646
648
|
@validate_call
|
|
647
649
|
def test_service_batch_import_tests_with_http_info(
|
|
648
650
|
self,
|
|
649
|
-
body:
|
|
651
|
+
body: V1BatchImportTestsRequest,
|
|
650
652
|
_request_timeout: Union[
|
|
651
653
|
None,
|
|
652
654
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -659,12 +661,12 @@ class TestServiceApi:
|
|
|
659
661
|
_content_type: Optional[StrictStr] = None,
|
|
660
662
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
661
663
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
662
|
-
) -> ApiResponse[
|
|
664
|
+
) -> ApiResponse[V1BatchImportTestsResponse]:
|
|
663
665
|
"""test_service_batch_import_tests
|
|
664
666
|
|
|
665
667
|
|
|
666
668
|
:param body: (required)
|
|
667
|
-
:type body:
|
|
669
|
+
:type body: V1BatchImportTestsRequest
|
|
668
670
|
:param _request_timeout: timeout setting for this request. If one
|
|
669
671
|
number provided, it will be total request
|
|
670
672
|
timeout. It can also be a pair (tuple) of
|
|
@@ -696,7 +698,7 @@ class TestServiceApi:
|
|
|
696
698
|
)
|
|
697
699
|
|
|
698
700
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
699
|
-
'200': "
|
|
701
|
+
'200': "V1BatchImportTestsResponse",
|
|
700
702
|
}
|
|
701
703
|
response_data = self.api_client.call_api(
|
|
702
704
|
*_param,
|
|
@@ -712,7 +714,7 @@ class TestServiceApi:
|
|
|
712
714
|
@validate_call
|
|
713
715
|
def test_service_batch_import_tests_without_preload_content(
|
|
714
716
|
self,
|
|
715
|
-
body:
|
|
717
|
+
body: V1BatchImportTestsRequest,
|
|
716
718
|
_request_timeout: Union[
|
|
717
719
|
None,
|
|
718
720
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -730,7 +732,7 @@ class TestServiceApi:
|
|
|
730
732
|
|
|
731
733
|
|
|
732
734
|
:param body: (required)
|
|
733
|
-
:type body:
|
|
735
|
+
:type body: V1BatchImportTestsRequest
|
|
734
736
|
:param _request_timeout: timeout setting for this request. If one
|
|
735
737
|
number provided, it will be total request
|
|
736
738
|
timeout. It can also be a pair (tuple) of
|
|
@@ -762,7 +764,7 @@ class TestServiceApi:
|
|
|
762
764
|
)
|
|
763
765
|
|
|
764
766
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
765
|
-
'200': "
|
|
767
|
+
'200': "V1BatchImportTestsResponse",
|
|
766
768
|
}
|
|
767
769
|
response_data = self.api_client.call_api(
|
|
768
770
|
*_param,
|
|
@@ -828,7 +830,7 @@ class TestServiceApi:
|
|
|
828
830
|
|
|
829
831
|
return self.api_client.param_serialize(
|
|
830
832
|
method='POST',
|
|
831
|
-
resource_path='/
|
|
833
|
+
resource_path='/v1/tests:batchImport',
|
|
832
834
|
path_params=_path_params,
|
|
833
835
|
query_params=_query_params,
|
|
834
836
|
header_params=_header_params,
|
|
@@ -847,7 +849,7 @@ class TestServiceApi:
|
|
|
847
849
|
@validate_call
|
|
848
850
|
def test_service_create_test(
|
|
849
851
|
self,
|
|
850
|
-
test: Annotated[
|
|
852
|
+
test: Annotated[V1Test, Field(description="The Test to create.")],
|
|
851
853
|
_request_timeout: Union[
|
|
852
854
|
None,
|
|
853
855
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -860,12 +862,12 @@ class TestServiceApi:
|
|
|
860
862
|
_content_type: Optional[StrictStr] = None,
|
|
861
863
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
862
864
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
863
|
-
) ->
|
|
865
|
+
) -> V1CreateTestResponse:
|
|
864
866
|
"""test_service_create_test
|
|
865
867
|
|
|
866
868
|
|
|
867
869
|
:param test: The Test to create. (required)
|
|
868
|
-
:type test:
|
|
870
|
+
:type test: V1Test
|
|
869
871
|
:param _request_timeout: timeout setting for this request. If one
|
|
870
872
|
number provided, it will be total request
|
|
871
873
|
timeout. It can also be a pair (tuple) of
|
|
@@ -897,7 +899,7 @@ class TestServiceApi:
|
|
|
897
899
|
)
|
|
898
900
|
|
|
899
901
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
900
|
-
'200': "
|
|
902
|
+
'200': "V1CreateTestResponse",
|
|
901
903
|
}
|
|
902
904
|
response_data = self.api_client.call_api(
|
|
903
905
|
*_param,
|
|
@@ -913,7 +915,7 @@ class TestServiceApi:
|
|
|
913
915
|
@validate_call
|
|
914
916
|
def test_service_create_test_with_http_info(
|
|
915
917
|
self,
|
|
916
|
-
test: Annotated[
|
|
918
|
+
test: Annotated[V1Test, Field(description="The Test to create.")],
|
|
917
919
|
_request_timeout: Union[
|
|
918
920
|
None,
|
|
919
921
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -926,12 +928,12 @@ class TestServiceApi:
|
|
|
926
928
|
_content_type: Optional[StrictStr] = None,
|
|
927
929
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
928
930
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
929
|
-
) -> ApiResponse[
|
|
931
|
+
) -> ApiResponse[V1CreateTestResponse]:
|
|
930
932
|
"""test_service_create_test
|
|
931
933
|
|
|
932
934
|
|
|
933
935
|
:param test: The Test to create. (required)
|
|
934
|
-
:type test:
|
|
936
|
+
:type test: V1Test
|
|
935
937
|
:param _request_timeout: timeout setting for this request. If one
|
|
936
938
|
number provided, it will be total request
|
|
937
939
|
timeout. It can also be a pair (tuple) of
|
|
@@ -963,7 +965,7 @@ class TestServiceApi:
|
|
|
963
965
|
)
|
|
964
966
|
|
|
965
967
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
966
|
-
'200': "
|
|
968
|
+
'200': "V1CreateTestResponse",
|
|
967
969
|
}
|
|
968
970
|
response_data = self.api_client.call_api(
|
|
969
971
|
*_param,
|
|
@@ -979,7 +981,7 @@ class TestServiceApi:
|
|
|
979
981
|
@validate_call
|
|
980
982
|
def test_service_create_test_without_preload_content(
|
|
981
983
|
self,
|
|
982
|
-
test: Annotated[
|
|
984
|
+
test: Annotated[V1Test, Field(description="The Test to create.")],
|
|
983
985
|
_request_timeout: Union[
|
|
984
986
|
None,
|
|
985
987
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -997,7 +999,7 @@ class TestServiceApi:
|
|
|
997
999
|
|
|
998
1000
|
|
|
999
1001
|
:param test: The Test to create. (required)
|
|
1000
|
-
:type test:
|
|
1002
|
+
:type test: V1Test
|
|
1001
1003
|
:param _request_timeout: timeout setting for this request. If one
|
|
1002
1004
|
number provided, it will be total request
|
|
1003
1005
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1029,7 +1031,7 @@ class TestServiceApi:
|
|
|
1029
1031
|
)
|
|
1030
1032
|
|
|
1031
1033
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1032
|
-
'200': "
|
|
1034
|
+
'200': "V1CreateTestResponse",
|
|
1033
1035
|
}
|
|
1034
1036
|
response_data = self.api_client.call_api(
|
|
1035
1037
|
*_param,
|
|
@@ -1095,7 +1097,7 @@ class TestServiceApi:
|
|
|
1095
1097
|
|
|
1096
1098
|
return self.api_client.param_serialize(
|
|
1097
1099
|
method='POST',
|
|
1098
|
-
resource_path='/
|
|
1100
|
+
resource_path='/v1/tests',
|
|
1099
1101
|
path_params=_path_params,
|
|
1100
1102
|
query_params=_query_params,
|
|
1101
1103
|
header_params=_header_params,
|
|
@@ -1128,7 +1130,7 @@ class TestServiceApi:
|
|
|
1128
1130
|
_content_type: Optional[StrictStr] = None,
|
|
1129
1131
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1130
1132
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1131
|
-
) ->
|
|
1133
|
+
) -> V1DeleteTestResponse:
|
|
1132
1134
|
"""test_service_delete_test
|
|
1133
1135
|
|
|
1134
1136
|
|
|
@@ -1168,7 +1170,7 @@ class TestServiceApi:
|
|
|
1168
1170
|
)
|
|
1169
1171
|
|
|
1170
1172
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1171
|
-
'200': "
|
|
1173
|
+
'200': "V1DeleteTestResponse",
|
|
1172
1174
|
}
|
|
1173
1175
|
response_data = self.api_client.call_api(
|
|
1174
1176
|
*_param,
|
|
@@ -1198,7 +1200,7 @@ class TestServiceApi:
|
|
|
1198
1200
|
_content_type: Optional[StrictStr] = None,
|
|
1199
1201
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1200
1202
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1201
|
-
) -> ApiResponse[
|
|
1203
|
+
) -> ApiResponse[V1DeleteTestResponse]:
|
|
1202
1204
|
"""test_service_delete_test
|
|
1203
1205
|
|
|
1204
1206
|
|
|
@@ -1238,7 +1240,7 @@ class TestServiceApi:
|
|
|
1238
1240
|
)
|
|
1239
1241
|
|
|
1240
1242
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1241
|
-
'200': "
|
|
1243
|
+
'200': "V1DeleteTestResponse",
|
|
1242
1244
|
}
|
|
1243
1245
|
response_data = self.api_client.call_api(
|
|
1244
1246
|
*_param,
|
|
@@ -1308,7 +1310,7 @@ class TestServiceApi:
|
|
|
1308
1310
|
)
|
|
1309
1311
|
|
|
1310
1312
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1311
|
-
'200': "
|
|
1313
|
+
'200': "V1DeleteTestResponse",
|
|
1312
1314
|
}
|
|
1313
1315
|
response_data = self.api_client.call_api(
|
|
1314
1316
|
*_param,
|
|
@@ -1366,7 +1368,289 @@ class TestServiceApi:
|
|
|
1366
1368
|
|
|
1367
1369
|
return self.api_client.param_serialize(
|
|
1368
1370
|
method='DELETE',
|
|
1369
|
-
resource_path='/
|
|
1371
|
+
resource_path='/v1/{name_6}',
|
|
1372
|
+
path_params=_path_params,
|
|
1373
|
+
query_params=_query_params,
|
|
1374
|
+
header_params=_header_params,
|
|
1375
|
+
body=_body_params,
|
|
1376
|
+
post_params=_form_params,
|
|
1377
|
+
files=_files,
|
|
1378
|
+
auth_settings=_auth_settings,
|
|
1379
|
+
collection_formats=_collection_formats,
|
|
1380
|
+
_host=_host,
|
|
1381
|
+
_request_auth=_request_auth
|
|
1382
|
+
)
|
|
1383
|
+
|
|
1384
|
+
|
|
1385
|
+
|
|
1386
|
+
|
|
1387
|
+
@validate_call
|
|
1388
|
+
def test_service_generate_test_cases(
|
|
1389
|
+
self,
|
|
1390
|
+
name: Annotated[str, Field(strict=True, description="Required. The Test for which to generate TestCases.")],
|
|
1391
|
+
body: TestServiceGenerateTestCasesRequest,
|
|
1392
|
+
_request_timeout: Union[
|
|
1393
|
+
None,
|
|
1394
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1395
|
+
Tuple[
|
|
1396
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1397
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1398
|
+
]
|
|
1399
|
+
] = None,
|
|
1400
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1401
|
+
_content_type: Optional[StrictStr] = None,
|
|
1402
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1403
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1404
|
+
) -> V1GenerateTestCasesResponse:
|
|
1405
|
+
"""test_service_generate_test_cases
|
|
1406
|
+
|
|
1407
|
+
|
|
1408
|
+
:param name: Required. The Test for which to generate TestCases. (required)
|
|
1409
|
+
:type name: str
|
|
1410
|
+
:param body: (required)
|
|
1411
|
+
:type body: TestServiceGenerateTestCasesRequest
|
|
1412
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1413
|
+
number provided, it will be total request
|
|
1414
|
+
timeout. It can also be a pair (tuple) of
|
|
1415
|
+
(connection, read) timeouts.
|
|
1416
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1417
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1418
|
+
request; this effectively ignores the
|
|
1419
|
+
authentication in the spec for a single request.
|
|
1420
|
+
:type _request_auth: dict, optional
|
|
1421
|
+
:param _content_type: force content-type for the request.
|
|
1422
|
+
:type _content_type: str, Optional
|
|
1423
|
+
:param _headers: set to override the headers for a single
|
|
1424
|
+
request; this effectively ignores the headers
|
|
1425
|
+
in the spec for a single request.
|
|
1426
|
+
:type _headers: dict, optional
|
|
1427
|
+
:param _host_index: set to override the host_index for a single
|
|
1428
|
+
request; this effectively ignores the host_index
|
|
1429
|
+
in the spec for a single request.
|
|
1430
|
+
:type _host_index: int, optional
|
|
1431
|
+
:return: Returns the result object.
|
|
1432
|
+
""" # noqa: E501
|
|
1433
|
+
|
|
1434
|
+
_param = self._test_service_generate_test_cases_serialize(
|
|
1435
|
+
name=name,
|
|
1436
|
+
body=body,
|
|
1437
|
+
_request_auth=_request_auth,
|
|
1438
|
+
_content_type=_content_type,
|
|
1439
|
+
_headers=_headers,
|
|
1440
|
+
_host_index=_host_index
|
|
1441
|
+
)
|
|
1442
|
+
|
|
1443
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1444
|
+
'200': "V1GenerateTestCasesResponse",
|
|
1445
|
+
}
|
|
1446
|
+
response_data = self.api_client.call_api(
|
|
1447
|
+
*_param,
|
|
1448
|
+
_request_timeout=_request_timeout
|
|
1449
|
+
)
|
|
1450
|
+
response_data.read()
|
|
1451
|
+
return self.api_client.response_deserialize(
|
|
1452
|
+
response_data=response_data,
|
|
1453
|
+
response_types_map=_response_types_map,
|
|
1454
|
+
).data
|
|
1455
|
+
|
|
1456
|
+
|
|
1457
|
+
@validate_call
|
|
1458
|
+
def test_service_generate_test_cases_with_http_info(
|
|
1459
|
+
self,
|
|
1460
|
+
name: Annotated[str, Field(strict=True, description="Required. The Test for which to generate TestCases.")],
|
|
1461
|
+
body: TestServiceGenerateTestCasesRequest,
|
|
1462
|
+
_request_timeout: Union[
|
|
1463
|
+
None,
|
|
1464
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1465
|
+
Tuple[
|
|
1466
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1467
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1468
|
+
]
|
|
1469
|
+
] = None,
|
|
1470
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1471
|
+
_content_type: Optional[StrictStr] = None,
|
|
1472
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1473
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1474
|
+
) -> ApiResponse[V1GenerateTestCasesResponse]:
|
|
1475
|
+
"""test_service_generate_test_cases
|
|
1476
|
+
|
|
1477
|
+
|
|
1478
|
+
:param name: Required. The Test for which to generate TestCases. (required)
|
|
1479
|
+
:type name: str
|
|
1480
|
+
:param body: (required)
|
|
1481
|
+
:type body: TestServiceGenerateTestCasesRequest
|
|
1482
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1483
|
+
number provided, it will be total request
|
|
1484
|
+
timeout. It can also be a pair (tuple) of
|
|
1485
|
+
(connection, read) timeouts.
|
|
1486
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1487
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1488
|
+
request; this effectively ignores the
|
|
1489
|
+
authentication in the spec for a single request.
|
|
1490
|
+
:type _request_auth: dict, optional
|
|
1491
|
+
:param _content_type: force content-type for the request.
|
|
1492
|
+
:type _content_type: str, Optional
|
|
1493
|
+
:param _headers: set to override the headers for a single
|
|
1494
|
+
request; this effectively ignores the headers
|
|
1495
|
+
in the spec for a single request.
|
|
1496
|
+
:type _headers: dict, optional
|
|
1497
|
+
:param _host_index: set to override the host_index for a single
|
|
1498
|
+
request; this effectively ignores the host_index
|
|
1499
|
+
in the spec for a single request.
|
|
1500
|
+
:type _host_index: int, optional
|
|
1501
|
+
:return: Returns the result object.
|
|
1502
|
+
""" # noqa: E501
|
|
1503
|
+
|
|
1504
|
+
_param = self._test_service_generate_test_cases_serialize(
|
|
1505
|
+
name=name,
|
|
1506
|
+
body=body,
|
|
1507
|
+
_request_auth=_request_auth,
|
|
1508
|
+
_content_type=_content_type,
|
|
1509
|
+
_headers=_headers,
|
|
1510
|
+
_host_index=_host_index
|
|
1511
|
+
)
|
|
1512
|
+
|
|
1513
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1514
|
+
'200': "V1GenerateTestCasesResponse",
|
|
1515
|
+
}
|
|
1516
|
+
response_data = self.api_client.call_api(
|
|
1517
|
+
*_param,
|
|
1518
|
+
_request_timeout=_request_timeout
|
|
1519
|
+
)
|
|
1520
|
+
response_data.read()
|
|
1521
|
+
return self.api_client.response_deserialize(
|
|
1522
|
+
response_data=response_data,
|
|
1523
|
+
response_types_map=_response_types_map,
|
|
1524
|
+
)
|
|
1525
|
+
|
|
1526
|
+
|
|
1527
|
+
@validate_call
|
|
1528
|
+
def test_service_generate_test_cases_without_preload_content(
|
|
1529
|
+
self,
|
|
1530
|
+
name: Annotated[str, Field(strict=True, description="Required. The Test for which to generate TestCases.")],
|
|
1531
|
+
body: TestServiceGenerateTestCasesRequest,
|
|
1532
|
+
_request_timeout: Union[
|
|
1533
|
+
None,
|
|
1534
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1535
|
+
Tuple[
|
|
1536
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1537
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1538
|
+
]
|
|
1539
|
+
] = None,
|
|
1540
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1541
|
+
_content_type: Optional[StrictStr] = None,
|
|
1542
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1543
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1544
|
+
) -> RESTResponseType:
|
|
1545
|
+
"""test_service_generate_test_cases
|
|
1546
|
+
|
|
1547
|
+
|
|
1548
|
+
:param name: Required. The Test for which to generate TestCases. (required)
|
|
1549
|
+
:type name: str
|
|
1550
|
+
:param body: (required)
|
|
1551
|
+
:type body: TestServiceGenerateTestCasesRequest
|
|
1552
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1553
|
+
number provided, it will be total request
|
|
1554
|
+
timeout. It can also be a pair (tuple) of
|
|
1555
|
+
(connection, read) timeouts.
|
|
1556
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1557
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1558
|
+
request; this effectively ignores the
|
|
1559
|
+
authentication in the spec for a single request.
|
|
1560
|
+
:type _request_auth: dict, optional
|
|
1561
|
+
:param _content_type: force content-type for the request.
|
|
1562
|
+
:type _content_type: str, Optional
|
|
1563
|
+
:param _headers: set to override the headers for a single
|
|
1564
|
+
request; this effectively ignores the headers
|
|
1565
|
+
in the spec for a single request.
|
|
1566
|
+
:type _headers: dict, optional
|
|
1567
|
+
:param _host_index: set to override the host_index for a single
|
|
1568
|
+
request; this effectively ignores the host_index
|
|
1569
|
+
in the spec for a single request.
|
|
1570
|
+
:type _host_index: int, optional
|
|
1571
|
+
:return: Returns the result object.
|
|
1572
|
+
""" # noqa: E501
|
|
1573
|
+
|
|
1574
|
+
_param = self._test_service_generate_test_cases_serialize(
|
|
1575
|
+
name=name,
|
|
1576
|
+
body=body,
|
|
1577
|
+
_request_auth=_request_auth,
|
|
1578
|
+
_content_type=_content_type,
|
|
1579
|
+
_headers=_headers,
|
|
1580
|
+
_host_index=_host_index
|
|
1581
|
+
)
|
|
1582
|
+
|
|
1583
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1584
|
+
'200': "V1GenerateTestCasesResponse",
|
|
1585
|
+
}
|
|
1586
|
+
response_data = self.api_client.call_api(
|
|
1587
|
+
*_param,
|
|
1588
|
+
_request_timeout=_request_timeout
|
|
1589
|
+
)
|
|
1590
|
+
return response_data.response
|
|
1591
|
+
|
|
1592
|
+
|
|
1593
|
+
def _test_service_generate_test_cases_serialize(
|
|
1594
|
+
self,
|
|
1595
|
+
name,
|
|
1596
|
+
body,
|
|
1597
|
+
_request_auth,
|
|
1598
|
+
_content_type,
|
|
1599
|
+
_headers,
|
|
1600
|
+
_host_index,
|
|
1601
|
+
) -> RequestSerialized:
|
|
1602
|
+
|
|
1603
|
+
_host = None
|
|
1604
|
+
|
|
1605
|
+
_collection_formats: Dict[str, str] = {
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
_path_params: Dict[str, str] = {}
|
|
1609
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1610
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1611
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1612
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
1613
|
+
_body_params: Optional[bytes] = None
|
|
1614
|
+
|
|
1615
|
+
# process the path parameters
|
|
1616
|
+
if name is not None:
|
|
1617
|
+
_path_params['name'] = name
|
|
1618
|
+
# process the query parameters
|
|
1619
|
+
# process the header parameters
|
|
1620
|
+
# process the form parameters
|
|
1621
|
+
# process the body parameter
|
|
1622
|
+
if body is not None:
|
|
1623
|
+
_body_params = body
|
|
1624
|
+
|
|
1625
|
+
|
|
1626
|
+
# set the HTTP header `Accept`
|
|
1627
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1628
|
+
[
|
|
1629
|
+
'application/json'
|
|
1630
|
+
]
|
|
1631
|
+
)
|
|
1632
|
+
|
|
1633
|
+
# set the HTTP header `Content-Type`
|
|
1634
|
+
if _content_type:
|
|
1635
|
+
_header_params['Content-Type'] = _content_type
|
|
1636
|
+
else:
|
|
1637
|
+
_default_content_type = (
|
|
1638
|
+
self.api_client.select_header_content_type(
|
|
1639
|
+
[
|
|
1640
|
+
'application/json'
|
|
1641
|
+
]
|
|
1642
|
+
)
|
|
1643
|
+
)
|
|
1644
|
+
if _default_content_type is not None:
|
|
1645
|
+
_header_params['Content-Type'] = _default_content_type
|
|
1646
|
+
|
|
1647
|
+
# authentication setting
|
|
1648
|
+
_auth_settings: List[str] = [
|
|
1649
|
+
]
|
|
1650
|
+
|
|
1651
|
+
return self.api_client.param_serialize(
|
|
1652
|
+
method='POST',
|
|
1653
|
+
resource_path='/v1/{name}:generateTestCases',
|
|
1370
1654
|
path_params=_path_params,
|
|
1371
1655
|
query_params=_query_params,
|
|
1372
1656
|
header_params=_header_params,
|
|
@@ -1398,7 +1682,7 @@ class TestServiceApi:
|
|
|
1398
1682
|
_content_type: Optional[StrictStr] = None,
|
|
1399
1683
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1400
1684
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1401
|
-
) ->
|
|
1685
|
+
) -> V1GetTestResponse:
|
|
1402
1686
|
"""test_service_get_test
|
|
1403
1687
|
|
|
1404
1688
|
|
|
@@ -1435,7 +1719,7 @@ class TestServiceApi:
|
|
|
1435
1719
|
)
|
|
1436
1720
|
|
|
1437
1721
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1438
|
-
'200': "
|
|
1722
|
+
'200': "V1GetTestResponse",
|
|
1439
1723
|
}
|
|
1440
1724
|
response_data = self.api_client.call_api(
|
|
1441
1725
|
*_param,
|
|
@@ -1464,7 +1748,7 @@ class TestServiceApi:
|
|
|
1464
1748
|
_content_type: Optional[StrictStr] = None,
|
|
1465
1749
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1466
1750
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1467
|
-
) -> ApiResponse[
|
|
1751
|
+
) -> ApiResponse[V1GetTestResponse]:
|
|
1468
1752
|
"""test_service_get_test
|
|
1469
1753
|
|
|
1470
1754
|
|
|
@@ -1501,7 +1785,7 @@ class TestServiceApi:
|
|
|
1501
1785
|
)
|
|
1502
1786
|
|
|
1503
1787
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1504
|
-
'200': "
|
|
1788
|
+
'200': "V1GetTestResponse",
|
|
1505
1789
|
}
|
|
1506
1790
|
response_data = self.api_client.call_api(
|
|
1507
1791
|
*_param,
|
|
@@ -1567,7 +1851,7 @@ class TestServiceApi:
|
|
|
1567
1851
|
)
|
|
1568
1852
|
|
|
1569
1853
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1570
|
-
'200': "
|
|
1854
|
+
'200': "V1GetTestResponse",
|
|
1571
1855
|
}
|
|
1572
1856
|
response_data = self.api_client.call_api(
|
|
1573
1857
|
*_param,
|
|
@@ -1620,7 +1904,7 @@ class TestServiceApi:
|
|
|
1620
1904
|
|
|
1621
1905
|
return self.api_client.param_serialize(
|
|
1622
1906
|
method='GET',
|
|
1623
|
-
resource_path='/
|
|
1907
|
+
resource_path='/v1/{name_9}',
|
|
1624
1908
|
path_params=_path_params,
|
|
1625
1909
|
query_params=_query_params,
|
|
1626
1910
|
header_params=_header_params,
|
|
@@ -1652,7 +1936,7 @@ class TestServiceApi:
|
|
|
1652
1936
|
_content_type: Optional[StrictStr] = None,
|
|
1653
1937
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1654
1938
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1655
|
-
) ->
|
|
1939
|
+
) -> V1ListMostRecentTestsResponse:
|
|
1656
1940
|
"""test_service_list_most_recent_tests
|
|
1657
1941
|
|
|
1658
1942
|
|
|
@@ -1689,7 +1973,7 @@ class TestServiceApi:
|
|
|
1689
1973
|
)
|
|
1690
1974
|
|
|
1691
1975
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1692
|
-
'200': "
|
|
1976
|
+
'200': "V1ListMostRecentTestsResponse",
|
|
1693
1977
|
}
|
|
1694
1978
|
response_data = self.api_client.call_api(
|
|
1695
1979
|
*_param,
|
|
@@ -1718,7 +2002,7 @@ class TestServiceApi:
|
|
|
1718
2002
|
_content_type: Optional[StrictStr] = None,
|
|
1719
2003
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1720
2004
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1721
|
-
) -> ApiResponse[
|
|
2005
|
+
) -> ApiResponse[V1ListMostRecentTestsResponse]:
|
|
1722
2006
|
"""test_service_list_most_recent_tests
|
|
1723
2007
|
|
|
1724
2008
|
|
|
@@ -1755,7 +2039,7 @@ class TestServiceApi:
|
|
|
1755
2039
|
)
|
|
1756
2040
|
|
|
1757
2041
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1758
|
-
'200': "
|
|
2042
|
+
'200': "V1ListMostRecentTestsResponse",
|
|
1759
2043
|
}
|
|
1760
2044
|
response_data = self.api_client.call_api(
|
|
1761
2045
|
*_param,
|
|
@@ -1821,7 +2105,7 @@ class TestServiceApi:
|
|
|
1821
2105
|
)
|
|
1822
2106
|
|
|
1823
2107
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1824
|
-
'200': "
|
|
2108
|
+
'200': "V1ListMostRecentTestsResponse",
|
|
1825
2109
|
}
|
|
1826
2110
|
response_data = self.api_client.call_api(
|
|
1827
2111
|
*_param,
|
|
@@ -1876,7 +2160,7 @@ class TestServiceApi:
|
|
|
1876
2160
|
|
|
1877
2161
|
return self.api_client.param_serialize(
|
|
1878
2162
|
method='GET',
|
|
1879
|
-
resource_path='/
|
|
2163
|
+
resource_path='/v1/tests:mostRecent',
|
|
1880
2164
|
path_params=_path_params,
|
|
1881
2165
|
query_params=_query_params,
|
|
1882
2166
|
header_params=_header_params,
|
|
@@ -1908,7 +2192,7 @@ class TestServiceApi:
|
|
|
1908
2192
|
_content_type: Optional[StrictStr] = None,
|
|
1909
2193
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1910
2194
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1911
|
-
) ->
|
|
2195
|
+
) -> V1ListTestsResponse:
|
|
1912
2196
|
"""test_service_list_tests
|
|
1913
2197
|
|
|
1914
2198
|
|
|
@@ -1945,7 +2229,7 @@ class TestServiceApi:
|
|
|
1945
2229
|
)
|
|
1946
2230
|
|
|
1947
2231
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1948
|
-
'200': "
|
|
2232
|
+
'200': "V1ListTestsResponse",
|
|
1949
2233
|
}
|
|
1950
2234
|
response_data = self.api_client.call_api(
|
|
1951
2235
|
*_param,
|
|
@@ -1974,7 +2258,7 @@ class TestServiceApi:
|
|
|
1974
2258
|
_content_type: Optional[StrictStr] = None,
|
|
1975
2259
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1976
2260
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1977
|
-
) -> ApiResponse[
|
|
2261
|
+
) -> ApiResponse[V1ListTestsResponse]:
|
|
1978
2262
|
"""test_service_list_tests
|
|
1979
2263
|
|
|
1980
2264
|
|
|
@@ -2011,7 +2295,7 @@ class TestServiceApi:
|
|
|
2011
2295
|
)
|
|
2012
2296
|
|
|
2013
2297
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2014
|
-
'200': "
|
|
2298
|
+
'200': "V1ListTestsResponse",
|
|
2015
2299
|
}
|
|
2016
2300
|
response_data = self.api_client.call_api(
|
|
2017
2301
|
*_param,
|
|
@@ -2077,7 +2361,7 @@ class TestServiceApi:
|
|
|
2077
2361
|
)
|
|
2078
2362
|
|
|
2079
2363
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2080
|
-
'200': "
|
|
2364
|
+
'200': "V1ListTestsResponse",
|
|
2081
2365
|
}
|
|
2082
2366
|
response_data = self.api_client.call_api(
|
|
2083
2367
|
*_param,
|
|
@@ -2132,7 +2416,7 @@ class TestServiceApi:
|
|
|
2132
2416
|
|
|
2133
2417
|
return self.api_client.param_serialize(
|
|
2134
2418
|
method='GET',
|
|
2135
|
-
resource_path='/
|
|
2419
|
+
resource_path='/v1/tests',
|
|
2136
2420
|
path_params=_path_params,
|
|
2137
2421
|
query_params=_query_params,
|
|
2138
2422
|
header_params=_header_params,
|
|
@@ -2165,7 +2449,7 @@ class TestServiceApi:
|
|
|
2165
2449
|
_content_type: Optional[StrictStr] = None,
|
|
2166
2450
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2167
2451
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2168
|
-
) ->
|
|
2452
|
+
) -> V1PerturbTestResponse:
|
|
2169
2453
|
"""test_service_perturb_test
|
|
2170
2454
|
|
|
2171
2455
|
|
|
@@ -2205,7 +2489,7 @@ class TestServiceApi:
|
|
|
2205
2489
|
)
|
|
2206
2490
|
|
|
2207
2491
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2208
|
-
'200': "
|
|
2492
|
+
'200': "V1PerturbTestResponse",
|
|
2209
2493
|
}
|
|
2210
2494
|
response_data = self.api_client.call_api(
|
|
2211
2495
|
*_param,
|
|
@@ -2235,7 +2519,7 @@ class TestServiceApi:
|
|
|
2235
2519
|
_content_type: Optional[StrictStr] = None,
|
|
2236
2520
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2237
2521
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2238
|
-
) -> ApiResponse[
|
|
2522
|
+
) -> ApiResponse[V1PerturbTestResponse]:
|
|
2239
2523
|
"""test_service_perturb_test
|
|
2240
2524
|
|
|
2241
2525
|
|
|
@@ -2275,7 +2559,7 @@ class TestServiceApi:
|
|
|
2275
2559
|
)
|
|
2276
2560
|
|
|
2277
2561
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2278
|
-
'200': "
|
|
2562
|
+
'200': "V1PerturbTestResponse",
|
|
2279
2563
|
}
|
|
2280
2564
|
response_data = self.api_client.call_api(
|
|
2281
2565
|
*_param,
|
|
@@ -2345,7 +2629,7 @@ class TestServiceApi:
|
|
|
2345
2629
|
)
|
|
2346
2630
|
|
|
2347
2631
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2348
|
-
'200': "
|
|
2632
|
+
'200': "V1PerturbTestResponse",
|
|
2349
2633
|
}
|
|
2350
2634
|
response_data = self.api_client.call_api(
|
|
2351
2635
|
*_param,
|
|
@@ -2414,7 +2698,7 @@ class TestServiceApi:
|
|
|
2414
2698
|
|
|
2415
2699
|
return self.api_client.param_serialize(
|
|
2416
2700
|
method='POST',
|
|
2417
|
-
resource_path='/
|
|
2701
|
+
resource_path='/v1/{name}:perturb',
|
|
2418
2702
|
path_params=_path_params,
|
|
2419
2703
|
query_params=_query_params,
|
|
2420
2704
|
header_params=_header_params,
|
|
@@ -2447,7 +2731,7 @@ class TestServiceApi:
|
|
|
2447
2731
|
_content_type: Optional[StrictStr] = None,
|
|
2448
2732
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2449
2733
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2450
|
-
) ->
|
|
2734
|
+
) -> V1UpdateTestResponse:
|
|
2451
2735
|
"""test_service_update_test
|
|
2452
2736
|
|
|
2453
2737
|
|
|
@@ -2487,7 +2771,7 @@ class TestServiceApi:
|
|
|
2487
2771
|
)
|
|
2488
2772
|
|
|
2489
2773
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2490
|
-
'200': "
|
|
2774
|
+
'200': "V1UpdateTestResponse",
|
|
2491
2775
|
}
|
|
2492
2776
|
response_data = self.api_client.call_api(
|
|
2493
2777
|
*_param,
|
|
@@ -2517,7 +2801,7 @@ class TestServiceApi:
|
|
|
2517
2801
|
_content_type: Optional[StrictStr] = None,
|
|
2518
2802
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2519
2803
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2520
|
-
) -> ApiResponse[
|
|
2804
|
+
) -> ApiResponse[V1UpdateTestResponse]:
|
|
2521
2805
|
"""test_service_update_test
|
|
2522
2806
|
|
|
2523
2807
|
|
|
@@ -2557,7 +2841,7 @@ class TestServiceApi:
|
|
|
2557
2841
|
)
|
|
2558
2842
|
|
|
2559
2843
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2560
|
-
'200': "
|
|
2844
|
+
'200': "V1UpdateTestResponse",
|
|
2561
2845
|
}
|
|
2562
2846
|
response_data = self.api_client.call_api(
|
|
2563
2847
|
*_param,
|
|
@@ -2627,7 +2911,7 @@ class TestServiceApi:
|
|
|
2627
2911
|
)
|
|
2628
2912
|
|
|
2629
2913
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2630
|
-
'200': "
|
|
2914
|
+
'200': "V1UpdateTestResponse",
|
|
2631
2915
|
}
|
|
2632
2916
|
response_data = self.api_client.call_api(
|
|
2633
2917
|
*_param,
|
|
@@ -2696,7 +2980,7 @@ class TestServiceApi:
|
|
|
2696
2980
|
|
|
2697
2981
|
return self.api_client.param_serialize(
|
|
2698
2982
|
method='PATCH',
|
|
2699
|
-
resource_path='/
|
|
2983
|
+
resource_path='/v1/{test.name}',
|
|
2700
2984
|
path_params=_path_params,
|
|
2701
2985
|
query_params=_query_params,
|
|
2702
2986
|
header_params=_header_params,
|