Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 2.52 KB

File metadata and controls

50 lines (41 loc) · 2.52 KB

GoogleWorkspaceProvider

GoogleWorkspaceProvider 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]
delegated_subject str
credentials Dict[str, object]
scopes str [optional]
exclude_users_service_account bool [optional]
filter_group UUID [optional]
user_delete_action OutgoingSyncDeleteAction [optional]
group_delete_action OutgoingSyncDeleteAction [optional]
default_group_email_domain str
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.google_workspace_provider import GoogleWorkspaceProvider

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

# convert the object into a dict
google_workspace_provider_dict = google_workspace_provider_instance.to_dict()
# create an instance of GoogleWorkspaceProvider from a dict
google_workspace_provider_from_dict = GoogleWorkspaceProvider.from_dict(google_workspace_provider_dict)

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