sts

Transfer Service

MigrationGCP
General

General information about the service.

Description

Google Storage Transfer Service enables you to transfer data from online and on-premises sources to Cloud Storage.

Service ID

storagetransfer.googleapis.com

Resource Pattern

transferJobs/{job}

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

sts-{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_storage_transfer_job" "main" {
2 description = "sts-${var.environment}"
3
4 transfer_spec {
5 gcs_data_source {
6 bucket_name = var.source_bucket
7 }
8 gcs_data_sink {
9 bucket_name = var.dest_bucket
10 }
11 }
12
13 schedule {
14 schedule_start_date {
15 year = 2024
16 month = 1
17 day = 1
18 }
19 }
20}
Utilities

Utilities to support app deployment or configuration.