Supported Providers
BigQuery
BigQuery provider allows interaction with Google BigQuery for querying and managing datasets.
Inputs
query
: str : The SQL query to execute against the BigQuery datasetdataset
: str : The name of the dataset in BigQuery to use for the queryproject_id
: str : The Google Cloud project ID where the BigQuery dataset is located
Outputs
result
: The results of the executed query, returned as a list of dictionaries.
Authentication Parameters
service_account_key
: JSON key file for the Google Cloud service account with permissions to access BigQuery.
Connecting with the Provider
- Create a Google Cloud project and enable the BigQuery API.
- Create a service account in your Google Cloud project and download the JSON key file.
- Share the necessary datasets with the service account.
- Configure your provider using the
service_account_key
,project_id
, anddataset
.