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.comResource Pattern
projects/{project}/locations/{location}/streams/{stream}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
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 Documentation
terraform
1resource "google_datastream_stream" "main" {2 display_name = "ds-${var.environment}"3 location = var.region4 stream_id = "ds-${var.environment}"56 desired_state = "RUNNING"78 source_config {9 source_connection_profile = google_datastream_connection_profile.source.id10 }1112 destination_config {13 destination_connection_profile = google_datastream_connection_profile.dest.id14 }1516 backfill_none {}17}
Utilities
Utilities to support app deployment or configuration.