Welcome to mirror list, hosted at ThFree Co, Russian Federation.

annotation.rb « dashboard « metrics « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08d1a333259ea3aabc03e380adfdaf839470cef1 (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 Metrics
      module Dashboard
        class Annotation < Grape::Entity
          expose :id, documentation: { type: 'integer', example: 4 }
          expose :starting_at, documentation: { type: 'dateTime', example: '2016-04-08T03:45:40.000Z' }
          expose :ending_at, documentation: { type: 'dateTime', example: '2016-08-08T09:00:00.000Z' }
          expose :dashboard_path, documentation: { type: 'string', example: '.gitlab/dashboards/custom_metrics.yml' }
          expose :description, documentation: { type: 'string', example: 'annotation description' }
          expose :environment_id, documentation: { type: 'integer', example: 1 }
          expose :cluster_id, documentation: { type: 'integer', example: 2 }
        end
      end
    end
  end
end