DatasetDataItem
Properties
| Name |
Type |
Description |
Notes |
| target |
str |
dataset-local address (unique, no nesting) |
|
| repository |
str |
source repository |
|
| ref |
DatasetRef |
|
|
| type |
str |
|
|
| object |
DatasetLocator |
|
[optional] |
| prefix |
DatasetLocator |
|
[optional] |
| table |
DatasetLocator |
|
[optional] |
| namespace |
str |
source namespace FQN, for namespace items |
[optional] |
Example
from lakefs_enterprise_sdk.models.dataset_data_item import DatasetDataItem
# TODO update the JSON string below
json = "{}"
# create an instance of DatasetDataItem from a JSON string
dataset_data_item_instance = DatasetDataItem.from_json(json)
# print the JSON string representation of the object
print DatasetDataItem.to_json()
# convert the object into a dict
dataset_data_item_dict = dataset_data_item_instance.to_dict()
# create an instance of DatasetDataItem from a dict
dataset_data_item_form_dict = dataset_data_item.from_dict(dataset_data_item_dict)