Bump API version to 2.25

This commit is contained in:
allegroai 2023-05-25 19:33:37 +03:00
parent 741fa84b52
commit d8b998ebd8
4 changed files with 7 additions and 7 deletions

View File

@ -653,7 +653,7 @@ get_all_ex {
enum: [pipeline, report, dataset] enum: [pipeline, report, dataset]
} }
} }
"999.0": ${get_all_ex."2.24"} { "2.25": ${get_all_ex."2.24"} {
request.properties.children_tags { request.properties.children_tags {
description: "The list of tag values to filter children by. Takes effect only if children_type is set. Use 'null' value to specify empty tags. Use '__Snot' value to specify that the following value should be excluded" description: "The list of tag values to filter children by. Takes effect only if children_type is set. Use 'null' value to specify empty tags. Use '__Snot' value to specify that the following value should be excluded"
type: array type: array
@ -905,7 +905,7 @@ get_unique_metric_variants {
} }
} }
} }
"999.0": ${get_unique_metric_variants."2.13"} { "2.25": ${get_unique_metric_variants."2.13"} {
request.properties.model_metrics { request.properties.model_metrics {
description: If set to true then bring unique metric and variant names from the project models otherwise from the project tasks description: If set to true then bring unique metric and variant names from the project models otherwise from the project tasks
type: boolean type: boolean
@ -1241,7 +1241,7 @@ get_task_parents {
} }
} }
} }
"999.0": ${get_task_parents."2.13"} { "2.25": ${get_task_parents."2.13"} {
request.properties.task_name { request.properties.task_name {
description: Task name pattern for the returned parent tasks description: Task name pattern for the returned parent tasks
type: string type: string

View File

@ -568,7 +568,7 @@ get_task_data {
} }
} }
} }
"999.0": ${get_task_data."2.23"} { "2.25": ${get_task_data."2.23"} {
request.properties { request.properties {
model_events { model_events {
type: boolean type: boolean

View File

@ -1507,7 +1507,7 @@ dequeue {
} }
} }
} }
"999.0": ${dequeue."1.5"} { "2.25": ${dequeue."1.5"} {
request.properties.remove_from_all_queues { request.properties.remove_from_all_queues {
type: boolean type: boolean
description: If set to 'true' then the task is searched and removed from all the queues. Otherwise only from the queue stored in the task execution parameters description: If set to 'true' then the task is searched and removed from all the queues. Otherwise only from the queue stored in the task execution parameters
@ -1532,7 +1532,7 @@ dequeue_many {
} }
} }
} }
"999.0": ${dequeue_many."2.13"} { "2.25": ${dequeue_many."2.13"} {
request.properties.remove_from_all_queues { request.properties.remove_from_all_queues {
type: boolean type: boolean
description: If set to 'true' then the tasks are searched and removed from all the queues. Otherwise only from the queue stored in the task execution parameters description: If set to 'true' then the tasks are searched and removed from all the queues. Otherwise only from the queue stored in the task execution parameters

View File

@ -39,7 +39,7 @@ class ServiceRepo(object):
"""If the check is set, parsing will fail for endpoint request with the version that is grater than the current """If the check is set, parsing will fail for endpoint request with the version that is grater than the current
maximum """ maximum """
_max_version = PartialVersion("2.24") _max_version = PartialVersion("2.25")
""" Maximum version number (the highest min_version value across all endpoints) """ """ Maximum version number (the highest min_version value across all endpoints) """
_endpoint_exp = ( _endpoint_exp = (