Google Cloud Professional Cloud Developer — Question 21
You need to migrate an internal file upload API with an enforced 500-MB file size limit to App Engine.
What should you do?
Answer options
- A. Use FTP to upload files.
- B. Use CPanel to upload files.
- C. Use signed URLs to upload files.
- D. Change the API to be a multipart file upload API.
Correct answer: C
Explanation
Using signed URLs allows for securely uploading files directly to a storage service, bypassing the size restrictions of the API itself. The other options, such as FTP and CPanel, are not suitable for App Engine, and changing the API to a multipart upload may not effectively address the size limit issue.