@@ -167,6 +167,11 @@ in Terraform state, a `terraform destroy` or `terraform apply` that would delete
167167* ` table_constraints ` - (Optional) Defines the primary key and foreign keys.
168168 Structure is [ documented below] ( #nested_table_constraints ) .
169169
170+ * ` table_replication_info ` - (Optional) Replication info of a table created
171+ using "AS REPLICA" DDL like:
172+ ` CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv ` .
173+ Structure is [ documented below] ( #nested_table_replication_info ) .
174+
170175* ` resource_tags ` - (Optional, [ Beta] ( https://terraform.io/docs/providers/google/guides/provider_versions.html ) )
171176 This field is in beta. The tags attached to this table. Tag keys are
172177 globally unique. Tag key is expected to be in the namespaced format, for
@@ -471,6 +476,17 @@ in Terraform state, a `terraform destroy` or `terraform apply` that would delete
471476* ` referenced_column ` : (Required) The column in the primary key that are
472477 referenced by the referencingColumn
473478
479+ <a name =" nested_table_replication_info " ></a >The ` table_replication_info ` block supports:
480+
481+ * ` source_project_id ` (Required) - The ID of the source project.
482+
483+ * ` source_dataset_id ` (Required) - The ID of the source dataset.
484+
485+ * ` source_table_id ` (Required) - The ID of the source materialized view.
486+
487+ * ` replication_interval_ms ` (Optional) - The interval at which the source
488+ materialized view is polled for updates. The default is 300000.
489+
474490## Attributes Reference
475491
476492In addition to the arguments listed above, the following computed attributes are
0 commit comments