In Google Cloud I have a BigQuery account and I have a Service Account defined there. I want to set up a Linked Service in Azure Data Factory so that I can extract data from BigQuery. I have generated a JSON file that contains the various keys:
{
"type": "service_account",
"project_id": "******",
"private_key_id": "***********",
"private_key": "-----BEGIN PRIVATE KEY ************ -----END PRIVATE KEY-----\n",
"client_email": "***********",
"client_id": "************",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://accounts.google.com/o/oauth2/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "https://*******************"
}
On the Linked Service there is an entry for Key File Path and Trusted Cert Path. I am trying to determine what goes in these two fields.
If I am storing these two items, where are they getting stored at:
- On-Prem or
- Somewhere in my Azure storage?