1
0
mirror of synced 2025-12-25 02:09:19 -05:00

source-microsoft-entra-id contribution from bishalbera (#47997)

Co-authored-by: Marcos Marx <marcosmarxm@users.noreply.github.com>
Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
This commit is contained in:
Biplab Bera
2024-11-06 00:52:21 +05:30
committed by GitHub
parent 5cb3508ad2
commit 05f72f9b39
3 changed files with 84 additions and 205 deletions

View File

@@ -1,44 +1,45 @@
# Microsoft Entra Id
The Microsoft Entra ID Connector for Airbyte allows seamless integration with Microsoft Entra ID, enabling secure and automated data synchronization of identity and access management information. With this connector, users can efficiently retrieve and manage user, group, and directory data to streamline identity workflows and ensure up-to-date access control within their applications.
## Authentication
First of all you need to register an application in the Microsoft Entra Admin Center. Please folow [these](https://learn.microsoft.com/en-us/graph/auth-register-app-v2) steps to do so. After that you need to follow [these](https://learn.microsoft.com/en-us/graph/auth-v2-service?context=graph%2Fapi%2F1.0&view=graph-rest-1.0&tabs=http) steps to configure the api with right permissions and get the access token.
## Configuration
| Input | Type | Description | Default Value |
|-------|------|-------------|---------------|
| `client_id` | `string` | Client ID. | |
| `client_secret` | `string` | Client secret. | |
| `tenant_id` | `string` | Tenant Id. | |
| `application_id_uri` | `string` | Application Id URI. | |
| `user_id` | `string` | ID of the owner. | |
| Input | Type | Description | Default Value |
| --------------- | -------- | ---------------- | ------------- |
| `client_id` | `string` | Client ID. | |
| `client_secret` | `string` | Client secret. | |
| `tenant_id` | `string` | Tenant Id. | |
| `user_id` | `string` | ID of the owner. | |
## Streams
| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental |
|-------------|-------------|------------|---------------------|----------------------|
| users | id | DefaultPaginator | ✅ | ❌ |
| groups | id | DefaultPaginator | ✅ | ❌ |
| applications | id | DefaultPaginator | ✅ | ❌ |
| user_owned_deleted_items | id | DefaultPaginator | ✅ | ❌ |
| directoryroles | id | No pagination | ✅ | ❌ |
| auditlogs | id | DefaultPaginator | ✅ | ❌ |
| directoryroletemplates | id | No pagination | ✅ | ❌ |
| directoryaudits | id | DefaultPaginator | ✅ | ❌ |
| serviceprincipals | id | DefaultPaginator | ✅ | ❌ |
| identityproviders | | DefaultPaginator | ✅ | ❌ |
| adminconsentrequestpolicy | | DefaultPaginator | ✅ | ❌ |
| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental |
| ------------------------- | ----------- | ---------------- | ------------------ | -------------------- |
| users | id | DefaultPaginator | ✅ | ❌ |
| groups | id | DefaultPaginator | ✅ | ❌ |
| applications | id | DefaultPaginator | ✅ | ❌ |
| user_owned_deleted_items | id | DefaultPaginator | ✅ | ❌ |
| directoryroles | id | No pagination | ✅ | ❌ |
| directoryroletemplates | id | No pagination | ✅ | ❌ |
| directoryaudits | id | DefaultPaginator | ✅ | ❌ |
| serviceprincipals | id | DefaultPaginator | ✅ | ❌ |
| identityproviders | | DefaultPaginator | ✅ | ❌ |
| adminconsentrequestpolicy | | DefaultPaginator | ✅ | ❌ |
## Changelog
<details>
<summary>Expand to review</summary>
| Version | Date | Pull Request | Subject |
|------------------|-------------------|--------------|----------------|
| 0.0.3 | 2024-10-29 | [47892](https://github.com/airbytehq/airbyte/pull/47892) | Update dependencies |
| 0.0.2 | 2024-10-28 | [47554](https://github.com/airbytehq/airbyte/pull/47554) | Update dependencies |
| 0.0.1 | 2024-10-18 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder |
| Version | Date | Pull Request | Subject |
| ------- | ---------- | -------------------------------------------------------- | ------------------------------------------------------------------------------------- |
| 0.0.4 | 2024-10-31 | [47997](https://github.com/airbytehq/airbyte/pull/47997) | Remove `audit_logs` and update auth remove `application_id_uri` parameter |
| 0.0.3 | 2024-10-29 | [47892](https://github.com/airbytehq/airbyte/pull/47892) | Update dependencies |
| 0.0.2 | 2024-10-28 | [47479](https://github.com/airbytehq/airbyte/pull/47479) | Update dependencies |
| 0.0.1 | 2024-10-18 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder |
</details>