MicrosoftEntraProvider Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| property_mappings | List[UUID] | [optional] | |
| property_mappings_group | List[UUID] | Property mappings used for group creation/updating. | [optional] |
| client_id | str | ||
| client_secret | str | ||
| tenant_id | str | ||
| exclude_users_service_account | bool | [optional] | |
| filter_group | UUID | [optional] | |
| user_delete_action | OutgoingSyncDeleteAction | [optional] | |
| group_delete_action | OutgoingSyncDeleteAction | [optional] | |
| sync_page_size | int | Controls the number of objects synced in a single task | [optional] |
| sync_page_timeout | str | Timeout for synchronization of a single page | [optional] |
| dry_run | bool | When enabled, provider will not modify or create objects in the remote system. | [optional] |
from authentik_client.models.microsoft_entra_provider_request import MicrosoftEntraProviderRequest
# TODO update the JSON string below
json = "{}"
# create an instance of MicrosoftEntraProviderRequest from a JSON string
microsoft_entra_provider_request_instance = MicrosoftEntraProviderRequest.from_json(json)
# print the JSON string representation of the object
print(MicrosoftEntraProviderRequest.to_json())
# convert the object into a dict
microsoft_entra_provider_request_dict = microsoft_entra_provider_request_instance.to_dict()
# create an instance of MicrosoftEntraProviderRequest from a dict
microsoft_entra_provider_request_from_dict = MicrosoftEntraProviderRequest.from_dict(microsoft_entra_provider_request_dict)