gitlab-org--gitlab-foss/doc/api/group_level_variables.md

137 lines
4.2 KiB
Markdown
Raw Normal View History

2017-07-19 11:57:27 +00:00
# Group-level Variables API
2016-01-07 13:10:49 +00:00
> [Introduced][ce-34519] in GitLab 9.5
2017-07-19 11:57:27 +00:00
## List group variables
2016-01-07 13:10:49 +00:00
2017-07-19 11:57:27 +00:00
Get list of a group's variables.
2016-01-07 13:10:49 +00:00
```
2017-07-19 11:57:27 +00:00
GET /groups/:id/variables
2016-01-07 13:10:49 +00:00
```
| Attribute | Type | required | Description |
|-----------|---------|----------|---------------------|
2017-07-19 11:57:27 +00:00
| `id` | integer/string | yes | The ID of a group or [URL-encoded path of the group](README.md#namespaced-path-encoding) owned by the authenticated user |
```
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/1/variables"
```
2016-01-07 13:10:49 +00:00
```json
[
{
"key": "TEST_VARIABLE_1",
"variable_type": "env_var",
2016-01-07 13:10:49 +00:00
"value": "TEST_1"
},
{
"key": "TEST_VARIABLE_2",
"variable_type": "env_var",
2016-01-07 13:10:49 +00:00
"value": "TEST_2"
}
]
```
## Show variable details
2017-07-19 11:57:27 +00:00
Get the details of a group's specific variable.
2016-01-07 13:10:49 +00:00
```
2017-07-19 11:57:27 +00:00
GET /groups/:id/variables/:key
2016-01-07 13:10:49 +00:00
```
| Attribute | Type | required | Description |
|-----------|---------|----------|-----------------------|
2017-07-19 11:57:27 +00:00
| `id` | integer/string | yes | The ID of a group or [URL-encoded path of the group](README.md#namespaced-path-encoding) owned by the authenticated user |
| `key` | string | yes | The `key` of a variable |
```
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/1/variables/TEST_VARIABLE_1"
```
2016-01-07 13:10:49 +00:00
```json
{
"key": "TEST_VARIABLE_1",
"variable_type": "env_var",
2016-01-07 13:10:49 +00:00
"value": "TEST_1"
}
```
## Create variable
2017-07-19 11:57:27 +00:00
Create a new variable.
2016-01-07 13:10:49 +00:00
```
2017-07-19 11:57:27 +00:00
POST /groups/:id/variables
2016-01-07 13:10:49 +00:00
```
| Attribute | Type | required | Description |
|-----------------|---------|----------|-----------------------|
| `id` | integer/string | yes | The ID of a group or [URL-encoded path of the group](README.md#namespaced-path-encoding) owned by the authenticated user |
| `key` | string | yes | The `key` of a variable; must have no more than 255 characters; only `A-Z`, `a-z`, `0-9`, and `_` are allowed |
| `value` | string | yes | The `value` of a variable |
| `variable_type` | string | no | The type of a variable. Available types are: `env_var` (default) and `file` |
| `protected` | boolean | no | Whether the variable is protected |
```
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"
```
2016-01-07 13:10:49 +00:00
```json
{
"key": "NEW_VARIABLE",
2017-05-25 11:49:46 +00:00
"value": "new value",
"variable_type": "env_var",
2017-05-25 11:49:46 +00:00
"protected": false
2016-01-07 13:10:49 +00:00
}
```
## Update variable
2017-07-19 11:57:27 +00:00
Update a group's variable.
2016-01-07 13:10:49 +00:00
```
2017-07-19 11:57:27 +00:00
PUT /groups/:id/variables/:key
2016-01-07 13:10:49 +00:00
```
| Attribute | Type | required | Description |
|-----------------|---------|----------|-------------------------|
| `id` | integer/string | yes | The ID of a group or [URL-encoded path of the group](README.md#namespaced-path-encoding) owned by the authenticated user |
| `key` | string | yes | The `key` of a variable |
| `value` | string | yes | The `value` of a variable |
| `variable_type` | string | no | The type of a variable. Available types are: `env_var` (default) and `file` |
| `protected` | boolean | no | Whether the variable is protected |
```
curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/1/variables/NEW_VARIABLE" --form "value=updated value"
```
2016-01-07 13:10:49 +00:00
```json
{
"key": "NEW_VARIABLE",
2017-05-25 11:49:46 +00:00
"value": "updated value",
"variable_type": "env_var",
2017-05-25 11:49:46 +00:00
"protected": true
2016-01-07 13:10:49 +00:00
}
```
## Remove variable
2017-07-19 11:57:27 +00:00
Remove a group's variable.
2016-01-07 13:10:49 +00:00
```
2017-07-19 11:57:27 +00:00
DELETE /groups/:id/variables/:key
2016-01-07 13:10:49 +00:00
```
| Attribute | Type | required | Description |
|-----------|---------|----------|-------------------------|
2017-07-19 11:57:27 +00:00
| `id` | integer/string | yes | The ID of a group or [URL-encoded path of the group](README.md#namespaced-path-encoding) owned by the authenticated user |
| `key` | string | yes | The `key` of a variable |
```
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/1/variables/VARIABLE_1"
```
[ce-34519]: https://gitlab.com/gitlab-org/gitlab-ce/issues/34519