Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 2.05 KB

File metadata and controls

43 lines (34 loc) · 2.05 KB

GoogleWorkspaceProviderRequest

GoogleWorkspaceProvider 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]
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_request import GoogleWorkspaceProviderRequest

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

# convert the object into a dict
google_workspace_provider_request_dict = google_workspace_provider_request_instance.to_dict()
# create an instance of GoogleWorkspaceProviderRequest from a dict
google_workspace_provider_request_from_dict = GoogleWorkspaceProviderRequest.from_dict(google_workspace_provider_request_dict)

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