in cloudrun-malware-scanner/scanner.ts [385:395]
async moveProcessedFile(
srcfile: gcs.File,
destinationBucketName: string,
): Promise<void> {
const destinationBucket = this.storageClient.bucket(destinationBucketName);
await srcfile.move(destinationBucket);
logger.info(
`Successfully moved file ${srcfile.cloudStorageURI.href} to gs://${destinationBucketName}/${srcfile.name}`,
);
}