eval-studio-client 1.1.0a5__py3-none-any.whl → 1.1.0a7__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.
Files changed (107) hide show
  1. eval_studio_client/api/__init__.py +7 -3
  2. eval_studio_client/api/api/__init__.py +0 -1
  3. eval_studio_client/api/api/dashboard_service_api.py +17 -0
  4. eval_studio_client/api/api/test_service_api.py +34 -0
  5. eval_studio_client/api/api/workflow_service_api.py +510 -0
  6. eval_studio_client/api/docs/DashboardServiceApi.md +4 -2
  7. eval_studio_client/api/docs/PromptGenerationServiceAutoGeneratePromptsRequest.md +1 -1
  8. eval_studio_client/api/docs/RequiredTheDashboardToUpdate.md +1 -0
  9. eval_studio_client/api/docs/RequiredTheTestToUpdate.md +1 -0
  10. eval_studio_client/api/docs/TestServiceApi.md +8 -4
  11. eval_studio_client/api/docs/TestServiceGenerateTestCasesRequest.md +1 -1
  12. eval_studio_client/api/docs/V1Context.md +9 -4
  13. eval_studio_client/api/docs/V1Dashboard.md +1 -0
  14. eval_studio_client/api/docs/V1DashboardType.md +12 -0
  15. eval_studio_client/api/docs/V1DependencyList.md +30 -0
  16. eval_studio_client/api/docs/V1Evaluator.md +2 -0
  17. eval_studio_client/api/docs/V1GetGuardrailsConfigurationResponse.md +29 -0
  18. eval_studio_client/api/docs/V1LeaderboardReportModel.md +0 -2
  19. eval_studio_client/api/docs/V1ListWorkflowDependenciesResponse.md +30 -0
  20. eval_studio_client/api/docs/V1RepeatedContext.md +29 -0
  21. eval_studio_client/api/docs/V1Test.md +1 -0
  22. eval_studio_client/api/docs/V1TestType.md +12 -0
  23. eval_studio_client/api/docs/V1WorkflowDependency.md +30 -0
  24. eval_studio_client/api/docs/V1WorkflowEdgeType.md +1 -1
  25. eval_studio_client/api/docs/V1WorkflowNodeArtifact.md +1 -0
  26. eval_studio_client/api/docs/WorkflowServiceApi.md +135 -0
  27. eval_studio_client/api/models/__init__.py +7 -2
  28. eval_studio_client/api/models/prompt_generation_service_auto_generate_prompts_request.py +3 -2
  29. eval_studio_client/api/models/required_the_dashboard_to_update.py +5 -2
  30. eval_studio_client/api/models/required_the_test_to_update.py +5 -2
  31. eval_studio_client/api/models/test_service_generate_test_cases_request.py +10 -2
  32. eval_studio_client/api/models/v1_context.py +16 -6
  33. eval_studio_client/api/models/v1_dashboard.py +5 -2
  34. eval_studio_client/api/models/v1_dashboard_type.py +38 -0
  35. eval_studio_client/api/models/{generated_questions_validation_service_validate_generated_questions_request.py → v1_dependency_list.py} +14 -14
  36. eval_studio_client/api/models/v1_evaluator.py +11 -3
  37. eval_studio_client/api/models/v1_get_guardrails_configuration_response.py +87 -0
  38. eval_studio_client/api/models/v1_leaderboard_report_model.py +2 -10
  39. eval_studio_client/api/models/v1_list_workflow_dependencies_response.py +105 -0
  40. eval_studio_client/api/models/{v1_generated_test_case.py → v1_repeated_context.py} +12 -18
  41. eval_studio_client/api/models/v1_test.py +5 -2
  42. eval_studio_client/api/models/v1_test_type.py +38 -0
  43. eval_studio_client/api/models/v1_workflow_dependency.py +89 -0
  44. eval_studio_client/api/models/v1_workflow_edge_type.py +3 -2
  45. eval_studio_client/api/models/v1_workflow_node_artifact.py +6 -2
  46. eval_studio_client/api/test/test_prompt_generation_service_auto_generate_prompts_request.py +10 -2
  47. eval_studio_client/api/test/test_required_the_dashboard_to_update.py +2 -1
  48. eval_studio_client/api/test/test_required_the_test_to_update.py +2 -1
  49. eval_studio_client/api/test/test_required_the_updated_workflow.py +2 -1
  50. eval_studio_client/api/test/test_required_the_updated_workflow_node.py +2 -1
  51. eval_studio_client/api/test/test_test_service_generate_test_cases_request.py +10 -1
  52. eval_studio_client/api/test/test_v1_batch_delete_dashboards_response.py +2 -1
  53. eval_studio_client/api/test/test_v1_batch_delete_evaluators_response.py +3 -1
  54. eval_studio_client/api/test/test_v1_batch_delete_tests_response.py +2 -1
  55. eval_studio_client/api/test/test_v1_batch_get_dashboards_response.py +2 -1
  56. eval_studio_client/api/test/test_v1_batch_get_tests_response.py +2 -1
  57. eval_studio_client/api/test/test_v1_batch_import_tests_response.py +2 -1
  58. eval_studio_client/api/test/test_v1_clone_test_response.py +2 -1
  59. eval_studio_client/api/test/test_v1_context.py +6 -1
  60. eval_studio_client/api/test/test_v1_create_dashboard_response.py +2 -1
  61. eval_studio_client/api/test/test_v1_create_evaluator_response.py +3 -1
  62. eval_studio_client/api/test/test_v1_create_test_response.py +2 -1
  63. eval_studio_client/api/test/test_v1_dashboard.py +2 -1
  64. eval_studio_client/api/test/test_v1_dashboard_type.py +33 -0
  65. eval_studio_client/api/test/test_v1_delete_dashboard_response.py +2 -1
  66. eval_studio_client/api/test/test_v1_delete_evaluator_response.py +3 -1
  67. eval_studio_client/api/test/test_v1_delete_test_response.py +2 -1
  68. eval_studio_client/api/test/test_v1_dependency_list.py +56 -0
  69. eval_studio_client/api/test/test_v1_evaluator.py +3 -1
  70. eval_studio_client/api/test/test_v1_get_dashboard_response.py +2 -1
  71. eval_studio_client/api/test/test_v1_get_evaluator_response.py +3 -1
  72. eval_studio_client/api/test/test_v1_get_guardrails_configuration_response.py +51 -0
  73. eval_studio_client/api/test/test_v1_get_leaderboard_report_response.py +1 -3
  74. eval_studio_client/api/test/test_v1_get_test_response.py +2 -1
  75. eval_studio_client/api/test/test_v1_leaderboard_report.py +1 -3
  76. eval_studio_client/api/test/test_v1_leaderboard_report_model.py +1 -3
  77. eval_studio_client/api/test/test_v1_list_dashboards_response.py +2 -1
  78. eval_studio_client/api/test/test_v1_list_evaluators_response.py +3 -1
  79. eval_studio_client/api/test/test_v1_list_most_recent_dashboards_response.py +2 -1
  80. eval_studio_client/api/test/test_v1_list_most_recent_tests_response.py +2 -1
  81. eval_studio_client/api/test/test_v1_list_tests_response.py +2 -1
  82. eval_studio_client/api/test/test_v1_list_workflow_dependencies_response.py +93 -0
  83. eval_studio_client/api/test/test_v1_perturb_test_in_place_response.py +2 -1
  84. eval_studio_client/api/test/test_v1_perturb_test_response.py +2 -1
  85. eval_studio_client/api/test/test_v1_repeated_context.py +62 -0
  86. eval_studio_client/api/test/test_v1_test.py +2 -1
  87. eval_studio_client/api/test/test_v1_test_type.py +33 -0
  88. eval_studio_client/api/test/test_v1_update_dashboard_response.py +2 -1
  89. eval_studio_client/api/test/test_v1_update_test_response.py +2 -1
  90. eval_studio_client/api/test/test_v1_workflow.py +2 -1
  91. eval_studio_client/api/test/test_v1_workflow_dependency.py +52 -0
  92. eval_studio_client/api/test/test_v1_workflow_node.py +2 -1
  93. eval_studio_client/api/test/test_v1_workflow_node_artifact.py +2 -1
  94. eval_studio_client/api/test/test_v1_workflow_node_artifacts.py +2 -1
  95. eval_studio_client/api/test/test_workflow_service_api.py +13 -0
  96. eval_studio_client/client.py +11 -2
  97. eval_studio_client/gen/openapiv2/eval_studio.swagger.json +241 -92
  98. {eval_studio_client-1.1.0a5.dist-info → eval_studio_client-1.1.0a7.dist-info}/METADATA +1 -1
  99. {eval_studio_client-1.1.0a5.dist-info → eval_studio_client-1.1.0a7.dist-info}/RECORD +100 -88
  100. eval_studio_client/api/api/generated_questions_validation_service_api.py +0 -321
  101. eval_studio_client/api/docs/GeneratedQuestionsValidationServiceApi.md +0 -78
  102. eval_studio_client/api/docs/GeneratedQuestionsValidationServiceValidateGeneratedQuestionsRequest.md +0 -30
  103. eval_studio_client/api/docs/V1GeneratedTestCase.md +0 -30
  104. eval_studio_client/api/test/test_generated_questions_validation_service_api.py +0 -37
  105. eval_studio_client/api/test/test_generated_questions_validation_service_validate_generated_questions_request.py +0 -83
  106. eval_studio_client/api/test/test_v1_generated_test_case.py +0 -79
  107. {eval_studio_client-1.1.0a5.dist-info → eval_studio_client-1.1.0a7.dist-info}/WHEEL +0 -0
@@ -22,7 +22,6 @@ from eval_studio_client.api.api.dashboard_service_api import DashboardServiceApi
22
22
  from eval_studio_client.api.api.document_service_api import DocumentServiceApi
23
23
  from eval_studio_client.api.api.evaluation_service_api import EvaluationServiceApi
24
24
  from eval_studio_client.api.api.evaluator_service_api import EvaluatorServiceApi
25
- from eval_studio_client.api.api.generated_questions_validation_service_api import GeneratedQuestionsValidationServiceApi
26
25
  from eval_studio_client.api.api.human_calibration_service_api import HumanCalibrationServiceApi
27
26
  from eval_studio_client.api.api.info_service_api import InfoServiceApi
28
27
  from eval_studio_client.api.api.leaderboard_report_service_api import LeaderboardReportServiceApi
@@ -57,7 +56,6 @@ from eval_studio_client.api.exceptions import ApiException
57
56
 
58
57
  # import models into sdk package
59
58
  from eval_studio_client.api.models.adversarial_inputs_service_test_adversarial_inputs_robustness_request import AdversarialInputsServiceTestAdversarialInputsRobustnessRequest
60
- from eval_studio_client.api.models.generated_questions_validation_service_validate_generated_questions_request import GeneratedQuestionsValidationServiceValidateGeneratedQuestionsRequest
61
59
  from eval_studio_client.api.models.perturbation_service_create_perturbation_request import PerturbationServiceCreatePerturbationRequest
62
60
  from eval_studio_client.api.models.prompt_generation_service_auto_generate_prompts_request import PromptGenerationServiceAutoGeneratePromptsRequest
63
61
  from eval_studio_client.api.models.protobuf_any import ProtobufAny
@@ -132,6 +130,7 @@ from eval_studio_client.api.models.v1_create_workflow_node_response import V1Cre
132
130
  from eval_studio_client.api.models.v1_create_workflow_response import V1CreateWorkflowResponse
133
131
  from eval_studio_client.api.models.v1_dashboard import V1Dashboard
134
132
  from eval_studio_client.api.models.v1_dashboard_status import V1DashboardStatus
133
+ from eval_studio_client.api.models.v1_dashboard_type import V1DashboardType
135
134
  from eval_studio_client.api.models.v1_delete_dashboard_response import V1DeleteDashboardResponse
136
135
  from eval_studio_client.api.models.v1_delete_document_response import V1DeleteDocumentResponse
137
136
  from eval_studio_client.api.models.v1_delete_evaluator_response import V1DeleteEvaluatorResponse
@@ -142,6 +141,7 @@ from eval_studio_client.api.models.v1_delete_test_response import V1DeleteTestRe
142
141
  from eval_studio_client.api.models.v1_delete_workflow_edge_response import V1DeleteWorkflowEdgeResponse
143
142
  from eval_studio_client.api.models.v1_delete_workflow_node_response import V1DeleteWorkflowNodeResponse
144
143
  from eval_studio_client.api.models.v1_delete_workflow_response import V1DeleteWorkflowResponse
144
+ from eval_studio_client.api.models.v1_dependency_list import V1DependencyList
145
145
  from eval_studio_client.api.models.v1_document import V1Document
146
146
  from eval_studio_client.api.models.v1_estimate_threshold_request import V1EstimateThresholdRequest
147
147
  from eval_studio_client.api.models.v1_evaluation_test import V1EvaluationTest
@@ -153,10 +153,10 @@ from eval_studio_client.api.models.v1_finalize_operation_response import V1Final
153
153
  from eval_studio_client.api.models.v1_find_all_test_cases_by_id_response import V1FindAllTestCasesByIDResponse
154
154
  from eval_studio_client.api.models.v1_find_test_lab_response import V1FindTestLabResponse
155
155
  from eval_studio_client.api.models.v1_generate_test_cases_response import V1GenerateTestCasesResponse
156
- from eval_studio_client.api.models.v1_generated_test_case import V1GeneratedTestCase
157
156
  from eval_studio_client.api.models.v1_get_dashboard_response import V1GetDashboardResponse
158
157
  from eval_studio_client.api.models.v1_get_document_response import V1GetDocumentResponse
159
158
  from eval_studio_client.api.models.v1_get_evaluator_response import V1GetEvaluatorResponse
159
+ from eval_studio_client.api.models.v1_get_guardrails_configuration_response import V1GetGuardrailsConfigurationResponse
160
160
  from eval_studio_client.api.models.v1_get_info_response import V1GetInfoResponse
161
161
  from eval_studio_client.api.models.v1_get_leaderboard_report_response import V1GetLeaderboardReportResponse
162
162
  from eval_studio_client.api.models.v1_get_leaderboard_response import V1GetLeaderboardResponse
@@ -214,6 +214,7 @@ from eval_studio_client.api.models.v1_list_test_case_relationships_response impo
214
214
  from eval_studio_client.api.models.v1_list_test_cases_response import V1ListTestCasesResponse
215
215
  from eval_studio_client.api.models.v1_list_test_classes_response import V1ListTestClassesResponse
216
216
  from eval_studio_client.api.models.v1_list_tests_response import V1ListTestsResponse
217
+ from eval_studio_client.api.models.v1_list_workflow_dependencies_response import V1ListWorkflowDependenciesResponse
217
218
  from eval_studio_client.api.models.v1_list_workflows_response import V1ListWorkflowsResponse
218
219
  from eval_studio_client.api.models.v1_metric_score import V1MetricScore
219
220
  from eval_studio_client.api.models.v1_metric_scores import V1MetricScores
@@ -229,6 +230,7 @@ from eval_studio_client.api.models.v1_perturbator_intensity import V1Perturbator
229
230
  from eval_studio_client.api.models.v1_problem_and_action import V1ProblemAndAction
230
231
  from eval_studio_client.api.models.v1_process_workflow_node_response import V1ProcessWorkflowNodeResponse
231
232
  from eval_studio_client.api.models.v1_prompt_library_item import V1PromptLibraryItem
233
+ from eval_studio_client.api.models.v1_repeated_context import V1RepeatedContext
232
234
  from eval_studio_client.api.models.v1_repeated_string import V1RepeatedString
233
235
  from eval_studio_client.api.models.v1_reset_workflow_node_response import V1ResetWorkflowNodeResponse
234
236
  from eval_studio_client.api.models.v1_test import V1Test
@@ -239,6 +241,7 @@ from eval_studio_client.api.models.v1_test_class import V1TestClass
239
241
  from eval_studio_client.api.models.v1_test_class_type import V1TestClassType
240
242
  from eval_studio_client.api.models.v1_test_lab import V1TestLab
241
243
  from eval_studio_client.api.models.v1_test_suite_evaluates import V1TestSuiteEvaluates
244
+ from eval_studio_client.api.models.v1_test_type import V1TestType
242
245
  from eval_studio_client.api.models.v1_update_dashboard_response import V1UpdateDashboardResponse
243
246
  from eval_studio_client.api.models.v1_update_document_response import V1UpdateDocumentResponse
244
247
  from eval_studio_client.api.models.v1_update_leaderboard_response import V1UpdateLeaderboardResponse
@@ -250,6 +253,7 @@ from eval_studio_client.api.models.v1_update_workflow_node_response import V1Upd
250
253
  from eval_studio_client.api.models.v1_update_workflow_response import V1UpdateWorkflowResponse
251
254
  from eval_studio_client.api.models.v1_who_am_i_response import V1WhoAmIResponse
252
255
  from eval_studio_client.api.models.v1_workflow import V1Workflow
256
+ from eval_studio_client.api.models.v1_workflow_dependency import V1WorkflowDependency
253
257
  from eval_studio_client.api.models.v1_workflow_edge import V1WorkflowEdge
254
258
  from eval_studio_client.api.models.v1_workflow_edge_type import V1WorkflowEdgeType
255
259
  from eval_studio_client.api.models.v1_workflow_node import V1WorkflowNode
@@ -6,7 +6,6 @@ from eval_studio_client.api.api.dashboard_service_api import DashboardServiceApi
6
6
  from eval_studio_client.api.api.document_service_api import DocumentServiceApi
7
7
  from eval_studio_client.api.api.evaluation_service_api import EvaluationServiceApi
8
8
  from eval_studio_client.api.api.evaluator_service_api import EvaluatorServiceApi
9
- from eval_studio_client.api.api.generated_questions_validation_service_api import GeneratedQuestionsValidationServiceApi
10
9
  from eval_studio_client.api.api.human_calibration_service_api import HumanCalibrationServiceApi
11
10
  from eval_studio_client.api.api.info_service_api import InfoServiceApi
12
11
  from eval_studio_client.api.api.leaderboard_report_service_api import LeaderboardReportServiceApi
@@ -1608,6 +1608,7 @@ class DashboardServiceApi:
1608
1608
  def dashboard_service_list_most_recent_dashboards(
1609
1609
  self,
1610
1610
  limit: Annotated[Optional[StrictInt], Field(description="Optional. The max number of the most recent Dashboards to retrieve. Use -1 to retrieve all. Defaults to 3.")] = None,
1611
+ filter: Annotated[Optional[StrictStr], Field(description="Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - model - only '=' operator is supported, e.g. \"model = \\\"models/<UUID>\\\"\"")] = None,
1611
1612
  _request_timeout: Union[
1612
1613
  None,
1613
1614
  Annotated[StrictFloat, Field(gt=0)],
@@ -1626,6 +1627,8 @@ class DashboardServiceApi:
1626
1627
 
1627
1628
  :param limit: Optional. The max number of the most recent Dashboards to retrieve. Use -1 to retrieve all. Defaults to 3.
1628
1629
  :type limit: int
1630
+ :param filter: Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - model - only '=' operator is supported, e.g. \"model = \\\"models/<UUID>\\\"\"
1631
+ :type filter: str
1629
1632
  :param _request_timeout: timeout setting for this request. If one
1630
1633
  number provided, it will be total request
1631
1634
  timeout. It can also be a pair (tuple) of
@@ -1650,6 +1653,7 @@ class DashboardServiceApi:
1650
1653
 
1651
1654
  _param = self._dashboard_service_list_most_recent_dashboards_serialize(
1652
1655
  limit=limit,
1656
+ filter=filter,
1653
1657
  _request_auth=_request_auth,
1654
1658
  _content_type=_content_type,
1655
1659
  _headers=_headers,
@@ -1674,6 +1678,7 @@ class DashboardServiceApi:
1674
1678
  def dashboard_service_list_most_recent_dashboards_with_http_info(
1675
1679
  self,
1676
1680
  limit: Annotated[Optional[StrictInt], Field(description="Optional. The max number of the most recent Dashboards to retrieve. Use -1 to retrieve all. Defaults to 3.")] = None,
1681
+ filter: Annotated[Optional[StrictStr], Field(description="Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - model - only '=' operator is supported, e.g. \"model = \\\"models/<UUID>\\\"\"")] = None,
1677
1682
  _request_timeout: Union[
1678
1683
  None,
1679
1684
  Annotated[StrictFloat, Field(gt=0)],
@@ -1692,6 +1697,8 @@ class DashboardServiceApi:
1692
1697
 
1693
1698
  :param limit: Optional. The max number of the most recent Dashboards to retrieve. Use -1 to retrieve all. Defaults to 3.
1694
1699
  :type limit: int
1700
+ :param filter: Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - model - only '=' operator is supported, e.g. \"model = \\\"models/<UUID>\\\"\"
1701
+ :type filter: str
1695
1702
  :param _request_timeout: timeout setting for this request. If one
1696
1703
  number provided, it will be total request
1697
1704
  timeout. It can also be a pair (tuple) of
@@ -1716,6 +1723,7 @@ class DashboardServiceApi:
1716
1723
 
1717
1724
  _param = self._dashboard_service_list_most_recent_dashboards_serialize(
1718
1725
  limit=limit,
1726
+ filter=filter,
1719
1727
  _request_auth=_request_auth,
1720
1728
  _content_type=_content_type,
1721
1729
  _headers=_headers,
@@ -1740,6 +1748,7 @@ class DashboardServiceApi:
1740
1748
  def dashboard_service_list_most_recent_dashboards_without_preload_content(
1741
1749
  self,
1742
1750
  limit: Annotated[Optional[StrictInt], Field(description="Optional. The max number of the most recent Dashboards to retrieve. Use -1 to retrieve all. Defaults to 3.")] = None,
1751
+ filter: Annotated[Optional[StrictStr], Field(description="Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - model - only '=' operator is supported, e.g. \"model = \\\"models/<UUID>\\\"\"")] = None,
1743
1752
  _request_timeout: Union[
1744
1753
  None,
1745
1754
  Annotated[StrictFloat, Field(gt=0)],
@@ -1758,6 +1767,8 @@ class DashboardServiceApi:
1758
1767
 
1759
1768
  :param limit: Optional. The max number of the most recent Dashboards to retrieve. Use -1 to retrieve all. Defaults to 3.
1760
1769
  :type limit: int
1770
+ :param filter: Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - model - only '=' operator is supported, e.g. \"model = \\\"models/<UUID>\\\"\"
1771
+ :type filter: str
1761
1772
  :param _request_timeout: timeout setting for this request. If one
1762
1773
  number provided, it will be total request
1763
1774
  timeout. It can also be a pair (tuple) of
@@ -1782,6 +1793,7 @@ class DashboardServiceApi:
1782
1793
 
1783
1794
  _param = self._dashboard_service_list_most_recent_dashboards_serialize(
1784
1795
  limit=limit,
1796
+ filter=filter,
1785
1797
  _request_auth=_request_auth,
1786
1798
  _content_type=_content_type,
1787
1799
  _headers=_headers,
@@ -1801,6 +1813,7 @@ class DashboardServiceApi:
1801
1813
  def _dashboard_service_list_most_recent_dashboards_serialize(
1802
1814
  self,
1803
1815
  limit,
1816
+ filter,
1804
1817
  _request_auth,
1805
1818
  _content_type,
1806
1819
  _headers,
@@ -1825,6 +1838,10 @@ class DashboardServiceApi:
1825
1838
 
1826
1839
  _query_params.append(('limit', limit))
1827
1840
 
1841
+ if filter is not None:
1842
+
1843
+ _query_params.append(('filter', filter))
1844
+
1828
1845
  # process the header parameters
1829
1846
  # process the form parameters
1830
1847
  # process the body parameter
@@ -2496,6 +2496,7 @@ class TestServiceApi:
2496
2496
  def test_service_list_most_recent_tests(
2497
2497
  self,
2498
2498
  limit: Annotated[Optional[StrictInt], Field(description="Optional. The max number of the most recent Tests to retrieve. Use -1 to retrieve all. Defaults to 3.")] = None,
2499
+ filter: Annotated[Optional[StrictStr], Field(description="Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - type - only '=' operator is supported")] = None,
2499
2500
  _request_timeout: Union[
2500
2501
  None,
2501
2502
  Annotated[StrictFloat, Field(gt=0)],
@@ -2514,6 +2515,8 @@ class TestServiceApi:
2514
2515
 
2515
2516
  :param limit: Optional. The max number of the most recent Tests to retrieve. Use -1 to retrieve all. Defaults to 3.
2516
2517
  :type limit: int
2518
+ :param filter: Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - type - only '=' operator is supported
2519
+ :type filter: str
2517
2520
  :param _request_timeout: timeout setting for this request. If one
2518
2521
  number provided, it will be total request
2519
2522
  timeout. It can also be a pair (tuple) of
@@ -2538,6 +2541,7 @@ class TestServiceApi:
2538
2541
 
2539
2542
  _param = self._test_service_list_most_recent_tests_serialize(
2540
2543
  limit=limit,
2544
+ filter=filter,
2541
2545
  _request_auth=_request_auth,
2542
2546
  _content_type=_content_type,
2543
2547
  _headers=_headers,
@@ -2562,6 +2566,7 @@ class TestServiceApi:
2562
2566
  def test_service_list_most_recent_tests_with_http_info(
2563
2567
  self,
2564
2568
  limit: Annotated[Optional[StrictInt], Field(description="Optional. The max number of the most recent Tests to retrieve. Use -1 to retrieve all. Defaults to 3.")] = None,
2569
+ filter: Annotated[Optional[StrictStr], Field(description="Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - type - only '=' operator is supported")] = None,
2565
2570
  _request_timeout: Union[
2566
2571
  None,
2567
2572
  Annotated[StrictFloat, Field(gt=0)],
@@ -2580,6 +2585,8 @@ class TestServiceApi:
2580
2585
 
2581
2586
  :param limit: Optional. The max number of the most recent Tests to retrieve. Use -1 to retrieve all. Defaults to 3.
2582
2587
  :type limit: int
2588
+ :param filter: Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - type - only '=' operator is supported
2589
+ :type filter: str
2583
2590
  :param _request_timeout: timeout setting for this request. If one
2584
2591
  number provided, it will be total request
2585
2592
  timeout. It can also be a pair (tuple) of
@@ -2604,6 +2611,7 @@ class TestServiceApi:
2604
2611
 
2605
2612
  _param = self._test_service_list_most_recent_tests_serialize(
2606
2613
  limit=limit,
2614
+ filter=filter,
2607
2615
  _request_auth=_request_auth,
2608
2616
  _content_type=_content_type,
2609
2617
  _headers=_headers,
@@ -2628,6 +2636,7 @@ class TestServiceApi:
2628
2636
  def test_service_list_most_recent_tests_without_preload_content(
2629
2637
  self,
2630
2638
  limit: Annotated[Optional[StrictInt], Field(description="Optional. The max number of the most recent Tests to retrieve. Use -1 to retrieve all. Defaults to 3.")] = None,
2639
+ filter: Annotated[Optional[StrictStr], Field(description="Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - type - only '=' operator is supported")] = None,
2631
2640
  _request_timeout: Union[
2632
2641
  None,
2633
2642
  Annotated[StrictFloat, Field(gt=0)],
@@ -2646,6 +2655,8 @@ class TestServiceApi:
2646
2655
 
2647
2656
  :param limit: Optional. The max number of the most recent Tests to retrieve. Use -1 to retrieve all. Defaults to 3.
2648
2657
  :type limit: int
2658
+ :param filter: Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - type - only '=' operator is supported
2659
+ :type filter: str
2649
2660
  :param _request_timeout: timeout setting for this request. If one
2650
2661
  number provided, it will be total request
2651
2662
  timeout. It can also be a pair (tuple) of
@@ -2670,6 +2681,7 @@ class TestServiceApi:
2670
2681
 
2671
2682
  _param = self._test_service_list_most_recent_tests_serialize(
2672
2683
  limit=limit,
2684
+ filter=filter,
2673
2685
  _request_auth=_request_auth,
2674
2686
  _content_type=_content_type,
2675
2687
  _headers=_headers,
@@ -2689,6 +2701,7 @@ class TestServiceApi:
2689
2701
  def _test_service_list_most_recent_tests_serialize(
2690
2702
  self,
2691
2703
  limit,
2704
+ filter,
2692
2705
  _request_auth,
2693
2706
  _content_type,
2694
2707
  _headers,
@@ -2713,6 +2726,10 @@ class TestServiceApi:
2713
2726
 
2714
2727
  _query_params.append(('limit', limit))
2715
2728
 
2729
+ if filter is not None:
2730
+
2731
+ _query_params.append(('filter', filter))
2732
+
2716
2733
  # process the header parameters
2717
2734
  # process the form parameters
2718
2735
  # process the body parameter
@@ -3033,6 +3050,7 @@ class TestServiceApi:
3033
3050
  @validate_call
3034
3051
  def test_service_list_tests(
3035
3052
  self,
3053
+ filter: Annotated[Optional[StrictStr], Field(description="Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - type - only '=' operator is supported")] = None,
3036
3054
  order_by: Annotated[Optional[StrictStr], Field(description="If specified, the returned tests will be ordered by the specified field. Attempts to implement AIP-130 (https://google.aip.dev/132#ordering), although not all features are supported yet. Supported fields: - create_time - update_time")] = None,
3037
3055
  _request_timeout: Union[
3038
3056
  None,
@@ -3050,6 +3068,8 @@ class TestServiceApi:
3050
3068
  """test_service_list_tests
3051
3069
 
3052
3070
 
3071
+ :param filter: Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - type - only '=' operator is supported
3072
+ :type filter: str
3053
3073
  :param order_by: If specified, the returned tests will be ordered by the specified field. Attempts to implement AIP-130 (https://google.aip.dev/132#ordering), although not all features are supported yet. Supported fields: - create_time - update_time
3054
3074
  :type order_by: str
3055
3075
  :param _request_timeout: timeout setting for this request. If one
@@ -3075,6 +3095,7 @@ class TestServiceApi:
3075
3095
  """ # noqa: E501
3076
3096
 
3077
3097
  _param = self._test_service_list_tests_serialize(
3098
+ filter=filter,
3078
3099
  order_by=order_by,
3079
3100
  _request_auth=_request_auth,
3080
3101
  _content_type=_content_type,
@@ -3099,6 +3120,7 @@ class TestServiceApi:
3099
3120
  @validate_call
3100
3121
  def test_service_list_tests_with_http_info(
3101
3122
  self,
3123
+ filter: Annotated[Optional[StrictStr], Field(description="Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - type - only '=' operator is supported")] = None,
3102
3124
  order_by: Annotated[Optional[StrictStr], Field(description="If specified, the returned tests will be ordered by the specified field. Attempts to implement AIP-130 (https://google.aip.dev/132#ordering), although not all features are supported yet. Supported fields: - create_time - update_time")] = None,
3103
3125
  _request_timeout: Union[
3104
3126
  None,
@@ -3116,6 +3138,8 @@ class TestServiceApi:
3116
3138
  """test_service_list_tests
3117
3139
 
3118
3140
 
3141
+ :param filter: Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - type - only '=' operator is supported
3142
+ :type filter: str
3119
3143
  :param order_by: If specified, the returned tests will be ordered by the specified field. Attempts to implement AIP-130 (https://google.aip.dev/132#ordering), although not all features are supported yet. Supported fields: - create_time - update_time
3120
3144
  :type order_by: str
3121
3145
  :param _request_timeout: timeout setting for this request. If one
@@ -3141,6 +3165,7 @@ class TestServiceApi:
3141
3165
  """ # noqa: E501
3142
3166
 
3143
3167
  _param = self._test_service_list_tests_serialize(
3168
+ filter=filter,
3144
3169
  order_by=order_by,
3145
3170
  _request_auth=_request_auth,
3146
3171
  _content_type=_content_type,
@@ -3165,6 +3190,7 @@ class TestServiceApi:
3165
3190
  @validate_call
3166
3191
  def test_service_list_tests_without_preload_content(
3167
3192
  self,
3193
+ filter: Annotated[Optional[StrictStr], Field(description="Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - type - only '=' operator is supported")] = None,
3168
3194
  order_by: Annotated[Optional[StrictStr], Field(description="If specified, the returned tests will be ordered by the specified field. Attempts to implement AIP-130 (https://google.aip.dev/132#ordering), although not all features are supported yet. Supported fields: - create_time - update_time")] = None,
3169
3195
  _request_timeout: Union[
3170
3196
  None,
@@ -3182,6 +3208,8 @@ class TestServiceApi:
3182
3208
  """test_service_list_tests
3183
3209
 
3184
3210
 
3211
+ :param filter: Optional. If specified, only leaderboards matching the filter will be returned. Attempts to implement AIP-160 (https://aip.dev/160), although not all fields, operators and features are supported. Supported fields: - type - only '=' operator is supported
3212
+ :type filter: str
3185
3213
  :param order_by: If specified, the returned tests will be ordered by the specified field. Attempts to implement AIP-130 (https://google.aip.dev/132#ordering), although not all features are supported yet. Supported fields: - create_time - update_time
3186
3214
  :type order_by: str
3187
3215
  :param _request_timeout: timeout setting for this request. If one
@@ -3207,6 +3235,7 @@ class TestServiceApi:
3207
3235
  """ # noqa: E501
3208
3236
 
3209
3237
  _param = self._test_service_list_tests_serialize(
3238
+ filter=filter,
3210
3239
  order_by=order_by,
3211
3240
  _request_auth=_request_auth,
3212
3241
  _content_type=_content_type,
@@ -3226,6 +3255,7 @@ class TestServiceApi:
3226
3255
 
3227
3256
  def _test_service_list_tests_serialize(
3228
3257
  self,
3258
+ filter,
3229
3259
  order_by,
3230
3260
  _request_auth,
3231
3261
  _content_type,
@@ -3247,6 +3277,10 @@ class TestServiceApi:
3247
3277
 
3248
3278
  # process the path parameters
3249
3279
  # process the query parameters
3280
+ if filter is not None:
3281
+
3282
+ _query_params.append(('filter', filter))
3283
+
3250
3284
  if order_by is not None:
3251
3285
 
3252
3286
  _query_params.append(('orderBy', order_by))