Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.29 KB

File metadata and controls

33 lines (24 loc) · 1.29 KB

DataSourceSyncResponse

Result of reconciling modeled tables against the live external catalog.

Properties

Name Type Description Notes
data_source_id UUID
updated int Tables whose columns changed → column_config + summary refreshed
unchanged int Tables still present with no schema change
deleted int Tables dropped externally → soft-deleted + embedding purged

Example

from ksapi.models.data_source_sync_response import DataSourceSyncResponse

# TODO update the JSON string below
json = "{}"
# create an instance of DataSourceSyncResponse from a JSON string
data_source_sync_response_instance = DataSourceSyncResponse.from_json(json)
# print the JSON string representation of the object
print(DataSourceSyncResponse.to_json())

# convert the object into a dict
data_source_sync_response_dict = data_source_sync_response_instance.to_dict()
# create an instance of DataSourceSyncResponse from a dict
data_source_sync_response_from_dict = DataSourceSyncResponse.from_dict(data_source_sync_response_dict)

[Back to Model list] [Back to API list] [Back to README]