MicrosoftEntraProvider Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| property_mappings | List[UUID] | [optional] | |
| property_mappings_group | List[UUID] | Property mappings used for group creation/updating. | [optional] |
| client_id | str | [optional] | |
| client_secret | str | [optional] | |
| tenant_id | str | [optional] | |
| 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.patched_microsoft_entra_provider_request import PatchedMicrosoftEntraProviderRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedMicrosoftEntraProviderRequest from a JSON string
patched_microsoft_entra_provider_request_instance = PatchedMicrosoftEntraProviderRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedMicrosoftEntraProviderRequest.to_json())
# convert the object into a dict
patched_microsoft_entra_provider_request_dict = patched_microsoft_entra_provider_request_instance.to_dict()
# create an instance of PatchedMicrosoftEntraProviderRequest from a dict
patched_microsoft_entra_provider_request_from_dict = PatchedMicrosoftEntraProviderRequest.from_dict(patched_microsoft_entra_provider_request_dict)