summaryrefslogtreecommitdiff
path: root/doc/api/protected_environments.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/protected_environments.md')
-rw-r--r--doc/api/protected_environments.md18
1 files changed, 11 insertions, 7 deletions
diff --git a/doc/api/protected_environments.md b/doc/api/protected_environments.md
index c7de4c504a4..61587136a14 100644
--- a/doc/api/protected_environments.md
+++ b/doc/api/protected_environments.md
@@ -49,7 +49,8 @@ Example response:
"user_id":null,
"group_id":null
}
- ]
+ ],
+ "required_approval_count": 0
}
]
```
@@ -78,12 +79,13 @@ Example response:
"name":"production",
"deploy_access_levels":[
{
- "access_level":40,
- "access_level_description":"Maintainers",
- "user_id":null,
- "group_id":null
+ "access_level": 40,
+ "access_level_description": "Maintainers",
+ "user_id": null,
+ "group_id": null
}
- ]
+ ],
+ "required_approval_count": 0
}
```
@@ -107,6 +109,7 @@ curl --header 'Content-Type: application/json' --request POST \
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](index.md#namespaced-path-encoding) owned by the authenticated user. |
| `name` | string | yes | The name of the environment. |
| `deploy_access_levels` | array | yes | Array of access levels allowed to deploy, with each described by a hash. |
+| `required_approval_count` | integer | no | The number of approvals required to deploy to this environment. This is part of Deployment Approvals, which isn't yet available for use. For details, see [issue](https://gitlab.com/gitlab-org/gitlab/-/issues/343864). |
Elements in the `deploy_access_levels` array should be one of `user_id`, `group_id` or
`access_level`, and take the form `{user_id: integer}`, `{group_id: integer}` or
@@ -125,7 +128,8 @@ Example response:
"user_id": null,
"group_id": 9899826
}
- ]
+ ],
+ "required_approval_count": 0
}
```