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] |
from openapi_client.models.i_storage_point import IStoragePoint
# TODO update the JSON string below
json = "{}"
# create an instance of IStoragePoint from a JSON string
i_storage_point_instance = IStoragePoint.from_json(json)
# print the JSON string representation of the object
print(IStoragePoint.to_json())
# convert the object into a dict
i_storage_point_dict = i_storage_point_instance.to_dict()
# create an instance of IStoragePoint from a dict
i_storage_point_from_dict = IStoragePoint.from_dict(i_storage_point_dict)