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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-10-17 18:11:48 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-10-17 18:11:48 +0300
commit673a1a02e97181a5f2d94cd0b116ebb4dba3d875 (patch)
treef5cba2d2646ce57729ad23eec2bc8d69038ec037 /doc/development
parent6081c1224414da0b6bf033c14a2b7c4dff3c0b5d (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development')
-rw-r--r--doc/development/internal_analytics/internal_event_instrumentation/quick_start.md5
-rw-r--r--doc/development/internal_api/index.md33
2 files changed, 35 insertions, 3 deletions
diff --git a/doc/development/internal_analytics/internal_event_instrumentation/quick_start.md b/doc/development/internal_analytics/internal_event_instrumentation/quick_start.md
index 7ed5db89656..271cb5f98a6 100644
--- a/doc/development/internal_analytics/internal_event_instrumentation/quick_start.md
+++ b/doc/development/internal_analytics/internal_event_instrumentation/quick_start.md
@@ -17,8 +17,11 @@ In order to instrument your code with Internal Events Tracking you need to do th
## Defining event and metrics
+<div class="video-fallback">
+ See the video about <a href="https://www.youtube.com/watch?v=QICKWznLyy0">adding events and metrics using the generator</a>
+</div>
<figure class="video_container">
- <iframe src="https://youtu.be/QICKWznLyy0" frameborder="0" allowfullscreen="true"> </iframe>
+ <iframe src="https://www.youtube-nocookie.com/embed/QICKWznLyy0" frameborder="0" allowfullscreen="true"> </iframe>
</figure>
To create an event and metric definitions you can use the `internal_events` generator.
diff --git a/doc/development/internal_api/index.md b/doc/development/internal_api/index.md
index 81fd78d1d27..f9b494b80c2 100644
--- a/doc/development/internal_api/index.md
+++ b/doc/development/internal_api/index.md
@@ -1221,7 +1221,20 @@ The group SCIM API implements the [RFC7644 protocol](https://www.rfc-editor.org/
To use this API, enable [Group SSO](../../user/group/saml_sso/index.md) for the group.
This API is only in use where [SCIM for Group SSO](../../user/group/saml_sso/scim_setup.md) is enabled. It's a prerequisite to the creation of SCIM identities.
-This API is different to the [main SCIM API](../../api/scim.md) and the [instance SCIM API](#instance-scim-api).
+This group SCIM API:
+
+- Is for system use for SCIM provider integration.
+- Implements the [RFC7644 protocol](https://www.rfc-editor.org/rfc/rfc7644).
+- Gets a list of SCIM provisioned users for the group.
+- Creates, deletes and updates SCIM provisioned users for the group.
+
+The [instance SCIM API](#instance-scim-api) does the same for instances.
+
+This group SCIM API is different to the [SCIM API](../../api/scim.md). The SCIM API:
+
+- Is not an internal API.
+- Does not implement the [RFC7644 protocol](https://www.rfc-editor.org/rfc/rfc7644).
+- Gets, checks, updates, and deletes SCIM identities within groups.
### Get a list of SCIM provisioned users
@@ -1374,6 +1387,9 @@ Example response:
Returns a `201` status code if successful.
+NOTE:
+After you create a group SCIM identity for a user, you can see that SCIM identity in the Admin Area.
+
### Update a single SCIM provisioned user
Fields that can be updated are:
@@ -1441,7 +1457,20 @@ The Instance SCIM API implements the [RFC7644 protocol](https://www.rfc-editor.o
To use this API, enable [SAML SSO](../../integration/saml.md) for the instance.
-This API is different to the [main SCIM API](../../api/scim.md) and the [group SCIM API](#group-scim-api).
+This instance SCIM API:
+
+- Is for system use for SCIM provider integration.
+- Implements the [RFC7644 protocol](https://www.rfc-editor.org/rfc/rfc7644).
+- Gets a list of SCIM provisioned users for the group.
+- Creates, deletes and updates SCIM provisioned users for the group.
+
+The [group SCIM API](#group-scim-api) does the same for groups.
+
+This instance SCIM API is different to the [SCIM API](../../api/scim.md). The SCIM API:
+
+- Is not an internal API.
+- Does not implement the [RFC7644 protocol](https://www.rfc-editor.org/rfc/rfc7644).
+- Gets, checks, updates, and deletes SCIM identities within groups.
### Get a list of SCIM provisioned users