This documentation is for the unstable version of GoodData, currrently in development.
For stable version, go to the latest stable version of this article.
For stable version, go to the latest stable version of this article.
catalog_data_source.
delete_csv_files
delete_csv_files(data_source_id: str, file_names: list[str])
Delete files from a GDSTORAGE data source.
Parameters
| name | type | description |
|---|---|---|
| data_source_id | str | Data source identification string. |
| file_names | list[str] | List of file names to delete. |
Returns
NoneExample
# Delete specific files from a GDSTORAGE data source
sdk.catalog_data_source.delete_csv_files(
data_source_id="my-gdstorage-ds",
file_names=["my_table.csv"],
)