ds

Datastream

Analytics & IoTGCP
General

General information about the service.

Description

Google Datastream is a serverless change data capture and replication service.

Service ID

datastream.googleapis.com

Resource Pattern

projects/{project}/locations/{location}/streams/{stream}

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

ds-{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_datastream_stream" "main" {
2 display_name = "ds-${var.environment}"
3 location = var.region
4 stream_id = "ds-${var.environment}"
5
6 desired_state = "RUNNING"
7
8 source_config {
9 source_connection_profile = google_datastream_connection_profile.source.id
10 }
11
12 destination_config {
13 destination_connection_profile = google_datastream_connection_profile.dest.id
14 }
15
16 backfill_none {}
17}
Utilities

Utilities to support app deployment or configuration.