debian-mirror-gitlab/lib/api/entities/ml/mlflow/update_run.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
324 B
Ruby
Raw Normal View History

2022-10-11 01:57:18 +05:30
# frozen_string_literal: true
module API
module Entities
module Ml
module Mlflow
class UpdateRun < Grape::Entity
expose :run_info
private
def run_info
::API::Entities::Ml::Mlflow::RunInfo.represent object
end
end
end
end
end
end