Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 2.43 KB

File metadata and controls

49 lines (40 loc) · 2.43 KB

MicrosoftEntraProvider

MicrosoftEntraProvider Serializer

Properties

Name Type Description Notes
pk int [readonly]
name str
property_mappings List[UUID] [optional]
property_mappings_group List[UUID] Property mappings used for group creation/updating. [optional]
component str Get object component so that we know how to edit the object [readonly]
assigned_backchannel_application_slug str Internal application name, used in URLs. [readonly]
assigned_backchannel_application_name str Application's display Name. [readonly]
verbose_name str Return object's verbose_name [readonly]
verbose_name_plural str Return object's plural verbose_name [readonly]
meta_model_name str Return internal model name [readonly]
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]

Example

from authentik_client.models.microsoft_entra_provider import MicrosoftEntraProvider

# TODO update the JSON string below
json = "{}"
# create an instance of MicrosoftEntraProvider from a JSON string
microsoft_entra_provider_instance = MicrosoftEntraProvider.from_json(json)
# print the JSON string representation of the object
print(MicrosoftEntraProvider.to_json())

# convert the object into a dict
microsoft_entra_provider_dict = microsoft_entra_provider_instance.to_dict()
# create an instance of MicrosoftEntraProvider from a dict
microsoft_entra_provider_from_dict = MicrosoftEntraProvider.from_dict(microsoft_entra_provider_dict)

[Back to Model list] [Back to API list] [Back to README]