群组级别变量 API

列出群组变量

获取群组变量列表。

GET /groups/:id/variables
参数 类型 是否必需 描述
id integer/string Yes 群组 ID 或 URL 编码的群组路径
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/1/variables"
[
    {
        "key": "TEST_VARIABLE_1",
        "variable_type": "env_var",
        "value": "TEST_1",
        "protected": false,
        "masked": false,
        "raw": false,
        "environment_scope": "*",
        "description": null
    },
    {
        "key": "TEST_VARIABLE_2",
        "variable_type": "env_var",
        "value": "TEST_2",
        "protected": false,
        "masked": false,
        "raw": false,
        "environment_scope": "*",
        "description": null
    }
]

显示变量详细信息

获取群组特定变量的详细信息。

GET /groups/:id/variables/:key
参数 类型 是否必需 描述
id integer/string Yes 群组 ID 或 URL 编码的群组路径
key string Yes 变量的 key
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/1/variables/TEST_VARIABLE_1"
{
  "key": "TEST_VARIABLE_1",
  "variable_type": "env_var",
  "value": "TEST_1",
  "protected": false,
  "masked": false,
  "raw": false,
  "environment_scope": "*",
  "description": null
}

创建变量

创建新变量。

POST /groups/:id/variables
参数 类型 是否必需 描述
id integer/string Yes 群组 ID 或 URL 编码的群组路径
key string Yes 变量的 key;不能超过 255 个字符,只允许 A-Za-z0-9_
value string Yes 变量的 value
variable_type string No 变量的类型。可用类型为 env_var(默认)和 file
protected boolean No 变量是否受保护
masked boolean No 变量是否隐藏
raw boolean No 变量是否被视为原始字符串。默认值:false。当为 true 时,值中的变量不会展开
environment_scope string No 变量的环境范围
description string No 变量的 description。默认值:null
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" \
     "https://gitlab.example.com/api/v4/groups/1/variables" --form "key=NEW_VARIABLE" --form "value=new value"
{
  "key": "NEW_VARIABLE",
  "value": "new value",
  "variable_type": "env_var",
  "protected": false,
  "masked": false,
  "raw": false,
  "environment_scope": "*",
  "description": null
}

更新变量

更新群组变量。

PUT /groups/:id/variables/:key
参数 类型 是否必需 描述
id integer/string Yes 群组 ID 或 URL 编码的群组路径
key string Yes 变量的 key
value string Yes 变量的 value
variable_type string No 变量的类型。可用类型为 env_var(默认)和 file
protected boolean No 变量是否受保护
masked boolean No 变量是否隐藏
raw boolean No 变量是否被视为原始字符串。默认值:false。当为 true 时,值中的变量不会展开
environment_scope string No 变量的环境范围
description string No 变量的描述。默认值为 null。引入于 16.2
curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" \
     "https://gitlab.example.com/api/v4/groups/1/variables/NEW_VARIABLE" --form "value=updated value"
{
  "key": "NEW_VARIABLE",
  "value": "updated value",
  "variable_type": "env_var",
  "protected": true,
  "masked": true,
  "raw": true,
  "environment_scope": "*",
  "description": null
}

移除变量

移除群组的变量。

DELETE /groups/:id/variables/:key
参数 类型 是否必需 描述
id integer/string Yes 群组 ID 或 URL 编码的群组路径
key string Yes 变量的 key
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" \
     "https://gitlab.example.com/api/v4/groups/1/variables/VARIABLE_1"