summaryrefslogtreecommitdiff
path: root/lib/api/entities/clusters/agent_token_basic.rb
blob: 793ec8188b7e55f1cd6050db0f6cd0f56a9dd801 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module API
  module Entities
    module Clusters
      class AgentTokenBasic < Grape::Entity
        expose :id
        expose :name
        expose :description
        expose :agent_id
        expose :status
        expose :created_at
        expose :created_by_user_id
      end
    end
  end
end