Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add: Link for max_staleness syntax. #6408

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/9108.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:none
bigquery: link to `max_staleness` syntax
```
2 changes: 1 addition & 1 deletion google-beta/services/bigquery/resource_bigquery_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ func ResourceBigQueryTable() *schema.Resource {
"max_staleness": {
Type: schema.TypeString,
Optional: true,
Description: `The maximum staleness of data that could be returned when the table (or stale MV) is queried. Staleness encoded as a string encoding of sql IntervalValue type.`,
Description: `The maximum staleness of data that could be returned when the table (or stale MV) is queried. Staleness encoded as a string encoding of [SQL IntervalValue type](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#interval_type).`,
},

// Labels: [Experimental] The labels associated with this table. You can
Expand Down
5 changes: 4 additions & 1 deletion website/docs/r/bigquery_table.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,10 @@ The following arguments are supported:

* `friendly_name` - (Optional) A descriptive name for the table.

* `max_staleness`: (Optional) The maximum staleness of data that could be returned when the table (or stale MV) is queried. Staleness encoded as a string encoding of sql IntervalValue type.
* `max_staleness`: (Optional) The maximum staleness of data that could be
returned when the table (or stale MV) is queried. Staleness encoded as a
string encoding of [SQL IntervalValue
type](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#interval_type).

* `encryption_configuration` - (Optional) Specifies how the table should be encrypted.
If left blank, the table will be encrypted with a Google-managed key; that process
Expand Down