2022-09-12 08:12:09 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
module Ml
|
|
|
|
module Mlflow
|
|
|
|
class UpdateRun < Grape::Entity
|
2022-10-20 08:10:43 -04:00
|
|
|
expose :itself, using: RunInfo, as: :run_info
|
2022-09-12 08:12:09 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|