2021-11-11 11:23:49 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
module Clusters
|
|
|
|
class AgentAuthorization < Grape::Entity
|
|
|
|
expose :agent_id, as: :id
|
2021-11-18 22:05:49 +05:30
|
|
|
expose :config_project, with: Entities::ProjectIdentity
|
2021-11-11 11:23:49 +05:30
|
|
|
expose :config, as: :configuration
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|