BiReservation

class BiReservation : KotlinCustomResource

Represents a BI Reservation. To get more information about BiReservation, see:

Example Usage

Bigquery Reservation Bi Reservation Basic

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.bigquery.BiReservation;
import com.pulumi.gcp.bigquery.BiReservationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var reservation = new BiReservation("reservation", BiReservationArgs.builder()
.location("us-west2")
.size("3000000000")
.build());
}
}

Import

BiReservation can be imported using any of these accepted formats

$ pulumi import gcp:bigquery/biReservation:BiReservation default projects/{{project}}/locations/{{location}}/biReservation
$ pulumi import gcp:bigquery/biReservation:BiReservation default {{project}}/{{location}}
$ pulumi import gcp:bigquery/biReservation:BiReservation default {{location}}

Properties

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val location: Output<String>

LOCATION_DESCRIPTION

Link copied to clipboard
val name: Output<String>

The resource name of the singleton BI reservation. Reservation names have the form projects/{projectId}/locations/{locationId}/biReservation.

Link copied to clipboard

Preferred tables to use BI capacity for. Structure is documented below.

Link copied to clipboard
val project: Output<String>

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val size: Output<Int>?

Size of a reservation, in bytes.

Link copied to clipboard
val updateTime: Output<String>

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".

Link copied to clipboard
val urn: Output<String>