SCIMProvider Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| 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 | |
| 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.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)