MDSQueryRequest
Properties
| Name |
Type |
Description |
Notes |
| sql |
str |
read-only SQL over object_metadata tables |
|
Example
from lakefs_enterprise_sdk.models.mds_query_request import MDSQueryRequest
# TODO update the JSON string below
json = "{}"
# create an instance of MDSQueryRequest from a JSON string
mds_query_request_instance = MDSQueryRequest.from_json(json)
# print the JSON string representation of the object
print MDSQueryRequest.to_json()
# convert the object into a dict
mds_query_request_dict = mds_query_request_instance.to_dict()
# create an instance of MDSQueryRequest from a dict
mds_query_request_form_dict = mds_query_request.from_dict(mds_query_request_dict)