Name | Type | Description | Notes |
---|---|---|---|
storage_type | StorageType | [optional] | |
storage_point_uri | str | [optional] [readonly] | |
service_uri | str | [optional] [readonly] | |
initialized | bool | [optional] [readonly] | |
end_point | str | [optional] [readonly] | |
remote_id | str | [optional] [readonly] | |
resource_server | str | [optional] [readonly] | |
owner | str | [optional] [readonly] | |
type | AuthResourceType | ||
status | IResourceStatus | [optional] | |
resource_uris | List[str] | [readonly] | |
scopes | List[str] | [optional] [readonly] | |
properties | Dict[str, List[object]] | [readonly] | |
platform_id | str | [optional] [readonly] | |
name | str | [readonly] | |
var_self | str | [optional] | |
background_job_id | str | [optional] |
from openapi_client.models.i_workspace import IWorkspace
# TODO update the JSON string below
json = "{}"
# create an instance of IWorkspace from a JSON string
i_workspace_instance = IWorkspace.from_json(json)
# print the JSON string representation of the object
print(IWorkspace.to_json())
# convert the object into a dict
i_workspace_dict = i_workspace_instance.to_dict()
# create an instance of IWorkspace from a dict
i_workspace_from_dict = IWorkspace.from_dict(i_workspace_dict)