Skip to main content
Version: 0.91

snorkelflow.client.file_storage_configs.get_file_storage_config

snorkelflow.client.file_storage_configs.get_file_storage_config(file_storage_config_name)

Get a specific file storage config based on the name

Parameters:

file_storage_config_name (str) – The name of the file storage config

Returns:

The requested file storage config object

Return type:

Dict[str, Any]

Examples

>>> sf.get_file_storage_config(file_storage_config_name="minio")
{
'file_storage_config_uid': <config_uid>,
'name': <storage_config_name>,
'is_default': <bool>,
'base_path': <base_path_string>,
}