Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 2.34 KB

File metadata and controls

45 lines (36 loc) · 2.34 KB

SCIMProviderRequest

SCIMProvider Serializer

Properties

Name Type Description Notes
name str
property_mappings List[UUID] [optional]
property_mappings_group List[UUID] Property mappings used for group creation/updating. [optional]
url str Base URL to SCIM requests, usually ends in /v2
verify_certificates bool [optional]
token str Authentication token [optional]
auth_mode SCIMAuthenticationModeEnum [optional]
auth_oauth UUID OAuth Source used for authentication [optional]
auth_oauth_params Dict[str, object] Additional OAuth parameters, such as grant_type [optional]
compatibility_mode CompatibilityModeEnum Alter authentik behavior for vendor-specific SCIM implementations. [optional]
service_provider_config_cache_timeout str Cache duration for ServiceProviderConfig responses. Set minutes=0 to disable. [optional]
exclude_users_service_account bool [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]
group_filters List[UUID] Group filters used to define sync-scope for groups. [optional]
dry_run bool When enabled, provider will not modify or create objects in the remote system. [optional]

Example

from authentik_client.models.scim_provider_request import SCIMProviderRequest

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

# convert the object into a dict
scim_provider_request_dict = scim_provider_request_instance.to_dict()
# create an instance of SCIMProviderRequest from a dict
scim_provider_request_from_dict = SCIMProviderRequest.from_dict(scim_provider_request_dict)

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