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.comResource Pattern
projects/{project}/locations/{location}/transferConfigs/{config}References
Chat
Powered by AITalk 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 Documentation
terraform
1resource "google_bigquery_data_transfer_config" "main" {2 display_name = "bdt-${var.environment}"3 location = var.region4 data_source_id = "google_cloud_storage"5 schedule = "every 24 hours"67 destination_dataset_id = google_bigquery_dataset.main.dataset_id89 params = {10 data_path_template = "gs://${var.bucket}/*.csv"11 }12}
Utilities
Utilities to support app deployment or configuration.