I've scanned the Storage Transfer docs, but I'm not seeing an example of this scenario. For reference, I'm using this script - https://github.com/GoogleCloudPlatform/python-docs-samples/blob/master/storage/transfer_service/nearline_request.py
Is there a way to set a prefix for files being transferred from the source bucket to the sink bucket?
For example, if I have this file in the source bucket:gs://source_bucket/myFile.csv
I want to add a prefix to it so that it looks like this in the sink bucket:gs://sink_bucket/date/type/myFile.csv
As far as I can tell, the sink bucket argument only accepts a bucket's name. I'm not seeing an option for something like this in the transferSpec
docs either. Any help would be most appreciated.