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

metadata.yaml « v4 « openapi « api « doc - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a5ef9f3355b3c4f97db9bbdd19688d07db19d66 (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
34
35
36
37
38
39
40
41
42
43
# Markdown documentation: https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/metadata.md

get:
  tags:
    - metadata
  summary: "Retrieve metadata information for this GitLab instance."
  operationId: "getMetadata"
  responses:
    "401":
      description: "unauthorized operation"
    "200":
      description: "successful operation"
      content:
        "application/json":
          schema:
            title: "MetadataResponse"
            type: "object"
            properties:
              version:
                type: "string"
              revision:
                type: "string"
              kas:
                type: "object"
                properties:
                  enabled:
                    type: "boolean"
                  externalUrl:
                    type: "string"
                    nullable: true
                  version:
                    type: "string"
                    nullable: true
          examples:
            Example:
              value:
                version: "15.0-pre"
                revision: "c401a659d0c"
                kas:
                  enabled: true
                  externalUrl: "grpc://gitlab.example.com:8150"
                  version: "15.0.0"