summaryrefslogtreecommitdiff
path: root/lib/api/entities/ml/mlflow/update_run.rb
blob: 5acdaab0e33aa13b7a36be2d5f2ab2507d4bce25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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