MDSQueryResponse
Properties
| Name |
Type |
Description |
Notes |
| query_id |
str |
identifies the stored result, for obtaining a fresh result_url once this one expires |
|
| 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_response import MDSQueryResponse
# TODO update the JSON string below
json = "{}"
# create an instance of MDSQueryResponse from a JSON string
mds_query_response_instance = MDSQueryResponse.from_json(json)
# print the JSON string representation of the object
print MDSQueryResponse.to_json()
# convert the object into a dict
mds_query_response_dict = mds_query_response_instance.to_dict()
# create an instance of MDSQueryResponse from a dict
mds_query_response_form_dict = mds_query_response.from_dict(mds_query_response_dict)