Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 2.18 KB

File metadata and controls

43 lines (34 loc) · 2.18 KB

PatchedGoogleWorkspaceProviderRequest

GoogleWorkspaceProvider Serializer

Properties

Name Type Description Notes
name str [optional]
property_mappings List[UUID] [optional]
property_mappings_group List[UUID] Property mappings used for group creation/updating. [optional]
delegated_subject str [optional]
credentials Dict[str, object] [optional]
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 [optional]
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.patched_google_workspace_provider_request import PatchedGoogleWorkspaceProviderRequest

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

# convert the object into a dict
patched_google_workspace_provider_request_dict = patched_google_workspace_provider_request_instance.to_dict()
# create an instance of PatchedGoogleWorkspaceProviderRequest from a dict
patched_google_workspace_provider_request_from_dict = PatchedGoogleWorkspaceProviderRequest.from_dict(patched_google_workspace_provider_request_dict)

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