bdt

BigQuery Data Transfer

MigrationGCP
General

General information about the service.

Description

BigQuery Data Transfer Service automates data movement into BigQuery from SaaS applications.

Service ID

bigquerydatatransfer.googleapis.com

Resource Pattern

projects/{project}/locations/{location}/transferConfigs/{config}

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

bdt-{workload}-{environment}

Length

1-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

project

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "google_bigquery_data_transfer_config" "main" {
2 display_name = "bdt-${var.environment}"
3 location = var.region
4 data_source_id = "google_cloud_storage"
5 schedule = "every 24 hours"
6
7 destination_dataset_id = google_bigquery_dataset.main.dataset_id
8
9 params = {
10 data_path_template = "gs://${var.bucket}/*.csv"
11 }
12}
Utilities

Utilities to support app deployment or configuration.