
Ultimate access to all questions.
An insurance claim review company, which provides expert opinions on contested insurance claims, utilizes Google Cloud for its data analysis pipelines. Clients upload documents to Cloud Storage. The company aims to immediately relocate files to a 'Classified Data' bucket upon upload if the file contains personally identifying information (PII). Which method would you recommend to achieve this?
A
Establish a quarantine bucket for uploads. Upon file upload, trigger a Cloud Function to invoke a custom-built machine learning model designed to detect PII. If PII is identified, transfer the file to the 'Classified Data' bucket.
B
Set up a quarantine bucket for uploads. Utilize Cloud Scheduler to execute an hourly job that calls a custom-built machine learning model trained to detect PII. If PII is found, move the file to the 'Classified Data' bucket.
C
Create a quarantine bucket for uploads. Trigger a Cloud Function upon file upload to call the Data Loss Prevention (DLP) API, applying infotypes to detect PII. If PII is detected, relocate the file to the 'Classified Data' bucket.
D
Implement a quarantine bucket for uploads. Use Cloud Scheduler to run an hourly job that invokes the DLP API to apply infotypes for PII detection. If PII is detected, move the file to the 'Classified Data' bucket.