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

agent_configuration_type.rb « kas « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 397a5739671c8b49f0512eca788d9025ea087ee5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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