Skip to content

Commit f2ca3ef

Browse files
committed
make docker_generate_docs
1 parent 9983385 commit f2ca3ef

File tree

11 files changed

+37
-25
lines changed

11 files changed

+37
-25
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ This module provisions a dataset and a list of tables with associated JSON schem
190190
| dataset\_id | Unique ID for the dataset being provisioned. | `string` | n/a | yes |
191191
| dataset\_labels | Key value pairs in a map for dataset labels | `map(string)` | `{}` | no |
192192
| dataset\_name | Friendly name for the dataset being provisioned. | `string` | `null` | no |
193-
| default\_table\_expiration\_ms | TTL of tables using the dataset in MS | `number` | `null` | no |
194193
| default\_partition\_expiration\_ms | The default partition expiration for all partitioned tables in the dataset, in MS | `number` | `null` | no |
194+
| default\_table\_expiration\_ms | TTL of tables using the dataset in MS | `number` | `null` | no |
195195
| delete\_contents\_on\_destroy | (Optional) If set to true, delete all the tables in the dataset when destroying the resource; otherwise, destroying the resource will fail if tables are present. | `bool` | `null` | no |
196196
| deletion\_protection | Whether or not to allow deletion of tables and external tables defined by this module. Can be overriden by table-level deletion\_protection configuration. | `bool` | `false` | no |
197197
| description | Dataset description. | `string` | `null` | no |
@@ -203,8 +203,8 @@ This module provisions a dataset and a list of tables with associated JSON schem
203203
| project\_id | Project where the dataset and table are created | `string` | n/a | yes |
204204
| resource\_tags | A map of resource tags to add to the dataset | `map(string)` | `{}` | no |
205205
| routines | A list of objects which include routine\_id, routine\_type, routine\_language, definition\_body, return\_type, routine\_description and arguments. | <pre>list(object({<br> routine_id = string,<br> routine_type = string,<br> language = string,<br> definition_body = string,<br> return_type = string,<br> description = string,<br> arguments = list(object({<br> name = string,<br> data_type = string,<br> argument_kind = string,<br> mode = string,<br> })),<br> }))</pre> | `[]` | no |
206+
| storage\_billing\_model | Specifies the storage billing model for the dataset. Set this flag value to LOGICAL to use logical bytes for storage billing, or to PHYSICAL to use physical bytes instead. LOGICAL is the default if this flag isn't specified. | `string` | `null` | no |
206207
| tables | A list of objects which include table\_id, table\_name, schema, clustering, time\_partitioning, range\_partitioning, expiration\_time and labels. | <pre>list(object({<br> table_id = string,<br> description = optional(string),<br> table_name = optional(string),<br> schema = string,<br> clustering = list(string),<br> require_partition_filter = optional(bool),<br> time_partitioning = object({<br> expiration_ms = string,<br> field = string,<br> type = string,<br> }),<br> range_partitioning = object({<br> field = string,<br> range = object({<br> start = string,<br> end = string,<br> interval = string,<br> }),<br> }),<br> expiration_time = string,<br> deletion_protection = optional(bool),<br> labels = map(string),<br> }))</pre> | `[]` | no |
207-
| storage\_billing\_model | Specifies the storage billing model for the dataset. Set this flag value to LOGICAL to use logical bytes for storage billing, or to PHYSICAL to use physical bytes instead | `string` | `null` | no |
208208
| views | A list of objects which include view\_id and view query | <pre>list(object({<br> view_id = string,<br> description = optional(string),<br> query = string,<br> use_legacy_sql = bool,<br> labels = map(string),<br> }))</pre> | `[]` | no |
209209

210210
## Outputs

metadata.display.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2024 Google LLC
1+
# Copyright 2025 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -39,12 +39,12 @@ spec:
3939
dataset_name:
4040
name: dataset_name
4141
title: Dataset Name
42-
default_table_expiration_ms:
43-
name: default_table_expiration_ms
44-
title: Default Table Expiration Ms
4542
default_partition_expiration_ms:
4643
name: default_partition_expiration_ms
4744
title: Default Partition Expiration Ms
45+
default_table_expiration_ms:
46+
name: default_table_expiration_ms
47+
title: Default Table Expiration Ms
4848
delete_contents_on_destroy:
4949
name: delete_contents_on_destroy
5050
title: Delete Contents On Destroy

metadata.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2024 Google LLC
1+
# Copyright 2025 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -66,9 +66,6 @@ spec:
6666
description: The regional location for the dataset only US and EU are allowed in module
6767
varType: string
6868
defaultValue: US
69-
- name: default_partition_expiration_ms
70-
description: The default partition expiration for all partitioned tables in the dataset, in MS
71-
varType: number
7269
- name: delete_contents_on_destroy
7370
description: (Optional) If set to true, delete all the tables in the dataset when destroying the resource; otherwise, destroying the resource will fail if tables are present.
7471
varType: bool
@@ -79,9 +76,15 @@ spec:
7976
- name: default_table_expiration_ms
8077
description: TTL of tables using the dataset in MS
8178
varType: number
79+
- name: default_partition_expiration_ms
80+
description: The default partition expiration for all partitioned tables in the dataset, in MS
81+
varType: number
8282
- name: max_time_travel_hours
8383
description: Defines the time travel window in hours
8484
varType: number
85+
- name: storage_billing_model
86+
description: Specifies the storage billing model for the dataset. Set this flag value to LOGICAL to use logical bytes for storage billing, or to PHYSICAL to use physical bytes instead. LOGICAL is the default if this flag isn't specified.
87+
varType: string
8588
- name: project_id
8689
description: Project where the dataset and table are created
8790
varType: string
@@ -224,9 +227,6 @@ spec:
224227
})),
225228
}))
226229
defaultValue: []
227-
- name: storage_billing_model
228-
description: Specifies the storage billing model for the dataset. Set this flag value to LOGICAL to use logical bytes for storage billing, or to PHYSICAL to use physical bytes instead
229-
varType: string
230230
outputs:
231231
- name: bigquery_dataset
232232
description: Bigquery dataset resource.

modules/authorization/metadata.display.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2024 Google LLC
1+
# Copyright 2025 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

modules/authorization/metadata.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2024 Google LLC
1+
# Copyright 2025 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -106,4 +106,4 @@ spec:
106106
- iam.googleapis.com
107107
providerVersions:
108108
- source: hashicorp/google
109-
version: ">= 5.39, < 7"
109+
version: ">= 4.44, < 7"

modules/data_warehouse/metadata.display.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2024 Google LLC
1+
# Copyright 2025 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

modules/data_warehouse/metadata.yaml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2024 Google LLC
1+
# Copyright 2025 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -140,5 +140,17 @@ spec:
140140
- serviceusage.googleapis.com
141141
- iam.googleapis.com
142142
providerVersions:
143+
- source: hashicorp/archive
144+
version: 2.4.2
143145
- source: hashicorp/google
144-
version: ">= 5.39, < 7"
146+
version: ">= 4.52, < 7"
147+
- source: hashicorp/google-beta
148+
version: ">= 4.52, < 7"
149+
- source: hashicorp/http
150+
version: ">= 2"
151+
- source: hashicorp/local
152+
version: ">=2.4"
153+
- source: hashicorp/random
154+
version: 3.6.2
155+
- source: hashicorp/time
156+
version: ">= 0.9.1"

modules/scheduled_queries/metadata.display.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2024 Google LLC
1+
# Copyright 2025 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

modules/scheduled_queries/metadata.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2024 Google LLC
1+
# Copyright 2025 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -72,4 +72,4 @@ spec:
7272
- iam.googleapis.com
7373
providerVersions:
7474
- source: hashicorp/google
75-
version: ">= 5.39, < 7"
75+
version: ">= 4.0, < 7"

modules/udf/metadata.display.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2024 Google LLC
1+
# Copyright 2025 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)