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

version.yaml « v4 « openapi « api « doc - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a689840f4c67d3a78c93f4eabd72110b658c8ac (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
# Markdown documentation: https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/version.md

get:
  tags:
    - version
  summary: "Retrieve version information for this GitLab instance."
  operationId: "getVersion"
  responses:
    "401":
      description: "unauthorized operation"
    "200":
      description: "successful operation"
      content:
        "application/json":
          schema:
            title: "VersionResponse"
            type: "object"
            properties:
              version:
                type: "string"
              revision:
                type: "string"
          examples:
            Example:
              value:
                version: "13.3.0-pre"
                revision: "f2b05afebb0"