Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

File metadata and controls

31 lines (22 loc) · 1.12 KB

WorkspaceSecurity

The workspace security information

Properties

Name Type Description Notes
default str The role by default
access_control_list List[WorkspaceAccessControl] The list which can access this Workspace with detailed access control information

Example

from cosmotech_api.models.workspace_security import WorkspaceSecurity

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

# convert the object into a dict
workspace_security_dict = workspace_security_instance.to_dict()
# create an instance of WorkspaceSecurity from a dict
workspace_security_from_dict = WorkspaceSecurity.from_dict(workspace_security_dict)

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