SCIMProvider Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| property_mappings | List[str] | [optional] | |
| property_mappings_group | List[str] | Property mappings used for group creation/updating. | [optional] |
| url | str | Base URL to SCIM requests, usually ends in /v2 | [optional] |
| verify_certificates | bool | [optional] | |
| token | str | Authentication token | [optional] |
| auth_mode | SCIMAuthenticationModeEnum | [optional] | |
| auth_oauth | str | 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] |
| exclude_users_service_account | bool | [optional] | |
| filter_group | str | [optional] | |
| dry_run | bool | When enabled, provider will not modify or create objects in the remote system. | [optional] |
from authentik_client.models.patched_scim_provider_request import PatchedSCIMProviderRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedSCIMProviderRequest from a JSON string
patched_scim_provider_request_instance = PatchedSCIMProviderRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedSCIMProviderRequest.to_json())
# convert the object into a dict
patched_scim_provider_request_dict = patched_scim_provider_request_instance.to_dict()
# create an instance of PatchedSCIMProviderRequest from a dict
patched_scim_provider_request_from_dict = PatchedSCIMProviderRequest.from_dict(patched_scim_provider_request_dict)