summaryrefslogtreecommitdiff
path: root/app/graphql/types/kas/agent_configuration_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/kas/agent_configuration_type.rb')
-rw-r--r--app/graphql/types/kas/agent_configuration_type.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/graphql/types/kas/agent_configuration_type.rb b/app/graphql/types/kas/agent_configuration_type.rb
new file mode 100644
index 00000000000..397a5739671
--- /dev/null
+++ b/app/graphql/types/kas/agent_configuration_type.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+module Types
+ module Kas
+ # rubocop: disable Graphql/AuthorizeTypes
+ class AgentConfigurationType < BaseObject
+ graphql_name 'AgentConfiguration'
+ description 'Configuration details for an Agent'
+
+ field :agent_name,
+ GraphQL::Types::String,
+ null: true,
+ description: 'Name of the agent.'
+ end
+ # rubocop: enable Graphql/AuthorizeTypes
+ end
+end