Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.89 KB

File metadata and controls

43 lines (34 loc) · 1.89 KB

SCIMSource

SCIMSource Serializer

Properties

Name Type Description Notes
pk UUID [readonly]
name str Source's display Name.
slug str Internal source name, used in URLs.
enabled bool [optional]
user_property_mappings List[UUID] [optional]
group_property_mappings List[UUID] [optional]
component str Get object component so that we know how to edit the object [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]
managed str Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update. [readonly]
user_path_template str [optional]
root_url str Get Root URL [readonly]
token_obj Token [readonly]

Example

from authentik_client.models.scim_source import SCIMSource

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

# convert the object into a dict
scim_source_dict = scim_source_instance.to_dict()
# create an instance of SCIMSource from a dict
scim_source_from_dict = SCIMSource.from_dict(scim_source_dict)

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