Я хочу соединить фабрику данных Azure и запрос Google Big через IR, какие значения требуются и как я могу получить доступ к данным из Big Query
ADF поддерживает соединитель больших запросов Google: https://docs.microsoft.com/en-us/azure/data-factory/connector-google-bigquery. Пример полезной нагрузки связанных служб приведен ниже:
{ "name": "GoogleBigQueryLinkedService", "properties": { "type": "GoogleBigQuery", "typeProperties": { "project" : "<project ID>", "additionalProjects" : "<additional project IDs>", "requestGoogleDriveScope" : true, "authenticationType" : "UserAuthentication", "clientId": "<id of the application used to generate the refresh token>", "clientSecret": { "type": "SecureString", "value":"<secret of the application used to generate the refresh token>" }, "refreshToken": { "type": "SecureString", "value": "<refresh token>" } } } }