MDSQueryResultURL
Properties
| Name |
Type |
Description |
Notes |
| result_url |
str |
pre-signed GET for the result, read directly from object storage |
|
| result_url_expiry |
int |
Unix Epoch time at which result_url expires |
|
Example
from lakefs_enterprise_sdk.models.mds_query_result_url import MDSQueryResultURL
# TODO update the JSON string below
json = "{}"
# create an instance of MDSQueryResultURL from a JSON string
mds_query_result_url_instance = MDSQueryResultURL.from_json(json)
# print the JSON string representation of the object
print MDSQueryResultURL.to_json()
# convert the object into a dict
mds_query_result_url_dict = mds_query_result_url_instance.to_dict()
# create an instance of MDSQueryResultURL from a dict
mds_query_result_url_form_dict = mds_query_result_url.from_dict(mds_query_result_url_dict)