You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: `Minimum slots available to this reservation. A slot is a unit of computational power in BigQuery, and serves as the
55
55
unit of parallelism. Queries using this reservation might use more slots during runtime if ignoreIdleSlots is set to false.`,
56
56
},
57
+
"concurrency": {
58
+
Type: schema.TypeInt,
59
+
Optional: true,
60
+
Description: `Maximum number of queries that are allowed to run concurrently in this reservation. This is a soft limit due to asynchronous nature of the system and various optimizations for small queries. Default value is 0 which means that concurrency will be automatically set based on the reservation size.`,
61
+
Default: 0,
62
+
},
57
63
"ignore_idle_slots": {
58
64
Type: schema.TypeBool,
59
65
Optional: true,
@@ -70,6 +76,12 @@ capacity specified above at most.`,
70
76
Examples: US, EU, asia-northeast1. The default value is US.`,
71
77
Default: "US",
72
78
},
79
+
"multi_region_auxiliary": {
80
+
Type: schema.TypeBool,
81
+
Optional: true,
82
+
Description: `Applicable only for reservations located within one of the BigQuery multi-regions (US or EU).
83
+
If set to true, this reservation is placed in the organization's secondary region which is designated for disaster recovery purposes. If false, this reservation is placed in the organization's default region.`,
84
+
},
73
85
"project": {
74
86
Type: schema.TypeString,
75
87
Optional: true,
@@ -101,6 +113,18 @@ func resourceBigqueryReservationReservationCreate(d *schema.ResourceData, meta i
@@ -72,6 +73,15 @@ The following arguments are supported:
72
73
the same admin project. If true, a query using this reservation will execute with the slot
73
74
capacity specified above at most.
74
75
76
+
*`concurrency` -
77
+
(Optional)
78
+
Maximum number of queries that are allowed to run concurrently in this reservation. This is a soft limit due to asynchronous nature of the system and various optimizations for small queries. Default value is 0 which means that concurrency will be automatically set based on the reservation size.
79
+
80
+
*`multi_region_auxiliary` -
81
+
(Optional)
82
+
Applicable only for reservations located within one of the BigQuery multi-regions (US or EU).
83
+
If set to true, this reservation is placed in the organization's secondary region which is designated for disaster recovery purposes. If false, this reservation is placed in the organization's default region.
84
+
75
85
*`location` -
76
86
(Optional)
77
87
The geographic location where the transfer config should reside.
0 commit comments