Set API version 2.28

This commit is contained in:
allegroai 2024-01-10 15:23:54 +02:00
parent 9a70ade4a6
commit 11b7a384af
4 changed files with 7 additions and 7 deletions

View File

@ -755,7 +755,7 @@ get_task_metrics{
} }
} }
get_multi_task_metrics { get_multi_task_metrics {
"999.0" { "2.28" {
description: """Get unique metrics and variants from the events of the specified type. description: """Get unique metrics and variants from the events of the specified type.
Only events reported for the passed task or model ids are analyzed.""" Only events reported for the passed task or model ids are analyzed."""
request { request {
@ -1199,7 +1199,7 @@ get_multi_task_plots {
default: true default: true
} }
} }
"999.0": ${get_multi_task_plots."2.26"} { "2.28": ${get_multi_task_plots."2.26"} {
request.properties.metrics { request.properties.metrics {
type: array type: array
description: List of metrics and variants description: List of metrics and variants
@ -1392,7 +1392,7 @@ multi_task_scalar_metrics_iter_histogram {
default: false default: false
} }
} }
"999.0": ${multi_task_scalar_metrics_iter_histogram."2.22"} { "2.28": ${multi_task_scalar_metrics_iter_histogram."2.22"} {
request.properties.metrics { request.properties.metrics {
type: array type: array
description: List of metrics and variants description: List of metrics and variants
@ -1426,7 +1426,7 @@ get_task_single_value_metrics {
default: false default: false
} }
} }
"999.0": ${get_task_single_value_metrics."2.22"} { "2.28": ${get_task_single_value_metrics."2.22"} {
request.properties.metrics { request.properties.metrics {
type: array type: array
description: List of metrics and variants description: List of metrics and variants

View File

@ -79,7 +79,7 @@ start_pipeline {
} }
} }
} }
"999.0": ${start_pipeline."2.17"} { "2.28": ${start_pipeline."2.17"} {
request.properties.verify_watched_queue { request.properties.verify_watched_queue {
description: If passed then check wheter there are any workers watiching the queue description: If passed then check wheter there are any workers watiching the queue
type: boolean type: boolean

View File

@ -949,7 +949,7 @@ get_unique_metric_variants {
default: false default: false
} }
} }
"999.0": ${get_unique_metric_variants."2.25"} { "2.28": ${get_unique_metric_variants."2.25"} {
request.properties.ids { request.properties.ids {
description: IDs of the tasks or models to get metrics from description: IDs of the tasks or models to get metrics from
type: array type: array

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.27") _max_version = PartialVersion("2.28")
""" 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 = (