Manage SSO group mapping¶
You can use the SDK's SSO client to manage your SSO group mapping in Atlan.
Create a new group mapping¶
To create a new SSO group mapping:
Coming soon
Create a new SSO group mapping | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 |
|
- Begin by retrieving the Atlan group for which you wish to create a group mapping. In this example, we retrieve an existing Atlan group by its name.
-
To create a new group mapping, provide the following:
- name of the SSO provider.
- existing Atlan group.
- name of the existing SSO group.
Coming soon
POST /api/service/idp/azure/mappers | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
- Specify the SSO provider; here, we create group mapping for
Azure AD
SSO. - Set the group mapping name in the format
<atlan_group_id>--<epoch_timestamp>
. - Provide the name of the existing Atlan group.
- Provide the name of the existing SSO group.
Retrieve group mapping¶
Retrieve group mapping by ID¶
To retrieve an existing SSO group mapping:
Coming soon
Retrieve an existing SSO group mapping | |
---|---|
1 2 3 4 5 6 7 8 9 |
|
-
To retrieve an existing group mapping, provide the following:
- name of the SSO provider.
- existing SSO group map identifier.
Coming soon
GET /api/service/idp/azure/mappers/0637576a-5419-40d7-b6cb-fe5841b1da4b | |
---|---|
1 |
|
All details are present the URL itself
Note that you need to specify the SSO alias and map identifier
directly in the URL. For this example, we're retrieving a group mapping for Azure AD
SSO.
Retrieve all group mappings¶
To retrieve all existing SSO group mappings:
Coming soon
Retrieve all existing SSO group mappings | |
---|---|
1 2 3 4 5 6 |
|
- To retrieve all existing group mappings,
you need to provide the name of the SSO provider.
Here, we're retrieving all group mappings for
Azure AD
SSO.
Coming soon
GET /api/service/idp/azure/mappers | |
---|---|
1 |
|
All details are present the URL itself
Note that you need to specify the SSO alias directly in the URL.
For this example, we're retrieving all group mappings for Azure AD
SSO.
Update an existing group mapping¶
To update an existing SSO group mapping:
Coming soon
Update an existing SSO group mapping | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
- Begin by retrieving the Atlan group for which you wish to update a group mapping. In this example, we retrieve an existing Atlan group by its name.
-
To update an existing group mapping, provide the following:
- name of the SSO provider.
- existing Atlan group.
- existing SSO group map identifier.
- updated name of the existing SSO group.
Coming soon
POST /api/service/idp/azure/mappers/0637576a-5419-40d7-b6cb-fe5841b1da4b | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
- Specify the SSO provider; here, we update group mapping for
Azure AD
SSO. - Specify the existing SSO group map identifier.
- Specify the name of the existing SSO group map.
- Provide the name of the existing Atlan group.
- Provide the updated name of the existing SSO group.
Delete a group mapping¶
To delete an existing SSO group mapping:
Coming soon
Delete an existing SSO group mapping | |
---|---|
1 2 3 4 5 6 7 8 9 |
|
- To delete an existing group mapping,
you need to provide the SSO alias and map identifier.
Here, we're deleting the group mapping for
Azure AD
SSO.
Coming soon
POST /api/service/idp/azure/mappers/0637576a-5419-40d7-b6cb-fe5841b1da4b/delete | |
---|---|
1 |
|
All details are present the URL itself
Note that you need to specify the SSO alias and map identifier
directly in the URL. For this example, we're deleting a group mapping for Azure AD
SSO.