Represents a BI Reservation.
To get more information about BiReservation, see:
resource "google_bigquery_bi_reservation" "reservation" {
location = "us-west2"
size = "3000000000"
}
The following arguments are supported:
location
-
(Required)
LOCATION_DESCRIPTIONsize
-
(Optional)
Size of a reservation, in bytes.
preferred_tables
-
(Optional)
Preferred tables to use BI capacity for.
Structure is documented below.
project
- (Optional) The ID of the project in which the resource belongs.
If it is not provided, the provider project is used.
The preferred_tables
block supports:
project_id
-
(Optional)
The assigned project ID of the project.
dataset_id
-
(Optional)
The ID of the dataset in the above project.
table_id
-
(Optional)
The ID of the table in the above dataset.
In addition to the arguments listed above, the following computed attributes are exported:
id
- an identifier for the resource with format projects/{{project}}/locations/{{location}}/biReservation
name
-
The resource name of the singleton BI reservation. Reservation names have the form projects/{projectId}/locations/{locationId}/biReservation
.
update_time
-
The last update timestamp of a reservation.
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
This resource provides the following Timeouts configuration options:
create
- Default is 20 minutes.update
- Default is 20 minutes.delete
- Default is 20 minutes.BiReservation can be imported using any of these accepted formats:
projects/{{project}}/locations/{{location}}/biReservation
{{project}}/{{location}}
{{location}}
In Terraform v1.5.0 and later, use an import
block to import BiReservation using one of the formats above. For example:
import {
id = "projects/{{project}}/locations/{{location}}/biReservation"
to = google_bigquery_bi_reservation.default
}
When using the terraform import
command, BiReservation can be imported using one of the formats above. For example:
$ terraform import google_bigquery_bi_reservation.default projects/{{project}}/locations/{{location}}/biReservation
$ terraform import google_bigquery_bi_reservation.default {{project}}/{{location}}
$ terraform import google_bigquery_bi_reservation.default {{location}}
This resource supports User Project Overrides.