Interface BigqueryReservationConfig
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,com.hashicorp.cdktf.TerraformMetaArguments
- All Known Implementing Classes:
BigqueryReservationConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:17.709Z") @Stability(Stable) public interface BigqueryReservationConfig extends software.amazon.jsii.JsiiSerializable, com.hashicorp.cdktf.TerraformMetaArguments
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classBigqueryReservationConfig.BuilderA builder forBigqueryReservationConfigstatic classBigqueryReservationConfig.Jsii$ProxyAn implementation forBigqueryReservationConfig
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static BigqueryReservationConfig.Builderbuilder()default BigqueryReservationAutoscalegetAutoscale()autoscale block.default NumbergetConcurrency()Maximum number of queries that are allowed to run concurrently in this reservation.default StringgetEdition()The edition type.default StringgetId()Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_reservation#id BigqueryReservation#id}.default ObjectgetIgnoreIdleSlots()If false, any query using this reservation will use idle slots from other reservations within the same admin project.default StringgetLocation()The geographic location where the transfer config should reside.default ObjectgetMultiRegionAuxiliary()Applicable only for reservations located within one of the BigQuery multi-regions (US or EU).StringgetName()The name of the reservation.default StringgetProject()Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_reservation#project BigqueryReservation#project}.NumbergetSlotCapacity()Minimum slots available to this reservation.default BigqueryReservationTimeoutsgetTimeouts()timeouts block.
-
-
-
Method Detail
-
getName
@Stability(Stable) @NotNull String getName()
The name of the reservation. This field must only contain alphanumeric characters or dash.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_reservation#name BigqueryReservation#name}
-
getSlotCapacity
@Stability(Stable) @NotNull Number getSlotCapacity()
Minimum slots available to this reservation.A slot is a unit of computational power in BigQuery, and serves as the unit of parallelism. Queries using this reservation might use more slots during runtime if ignoreIdleSlots is set to false. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_reservation#slot_capacity BigqueryReservation#slot_capacity}
-
getAutoscale
@Stability(Stable) @Nullable default BigqueryReservationAutoscale getAutoscale()
autoscale block.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_reservation#autoscale BigqueryReservation#autoscale}
-
getConcurrency
@Stability(Stable) @Nullable default Number getConcurrency()
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. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_reservation#concurrency BigqueryReservation#concurrency}
-
getEdition
@Stability(Stable) @Nullable default String getEdition()
The edition type. Valid values are STANDARD, ENTERPRISE, ENTERPRISE_PLUS.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_reservation#edition BigqueryReservation#edition}
-
getId
@Stability(Stable) @Nullable default String getId()
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_reservation#id BigqueryReservation#id}.Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
-
getIgnoreIdleSlots
@Stability(Stable) @Nullable default Object getIgnoreIdleSlots()
If false, any query using this reservation will use idle slots from other reservations within the same admin project.If true, a query using this reservation will execute with the slot capacity specified above at most. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_reservation#ignore_idle_slots BigqueryReservation#ignore_idle_slots}
-
getLocation
@Stability(Stable) @Nullable default String getLocation()
The geographic location where the transfer config should reside. Examples: US, EU, asia-northeast1. The default value is US.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_reservation#location BigqueryReservation#location}
-
getMultiRegionAuxiliary
@Stability(Stable) @Nullable default Object getMultiRegionAuxiliary()
Applicable only for reservations located within one of the BigQuery multi-regions (US or EU).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. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_reservation#multi_region_auxiliary BigqueryReservation#multi_region_auxiliary}
-
getProject
@Stability(Stable) @Nullable default String getProject()
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_reservation#project BigqueryReservation#project}.
-
getTimeouts
@Stability(Stable) @Nullable default BigqueryReservationTimeouts getTimeouts()
timeouts block.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_reservation#timeouts BigqueryReservation#timeouts}
-
builder
@Stability(Stable) static BigqueryReservationConfig.Builder builder()
- Returns:
- a
BigqueryReservationConfig.BuilderofBigqueryReservationConfig
-
-