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

agent_metadata_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: 4a3bb09b9e15c1bba2afdfb728f15f4a2049b082 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true

module Types
  module Kas
    # rubocop: disable Graphql/AuthorizeTypes
    class AgentMetadataType < BaseObject
      graphql_name 'AgentMetadata'
      description 'Information about a connected Agent'

      field :version,
            GraphQL::Types::String,
            null: true,
            description: 'Agent version tag.'

      field :commit,
            GraphQL::Types::String,
            method: :commit_id,
            null: true,
            description: 'Agent version commit.'

      field :pod_namespace,
            GraphQL::Types::String,
            null: true,
            description: 'Namespace of the pod running the Agent.'

      field :pod_name,
            GraphQL::Types::String,
            null: true,
            description: 'Name of the pod running the Agent.'
    end
    # rubocop: enable Graphql/AuthorizeTypes
  end
end