1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. biglake
  5. Database
Google Cloud Classic v6.67.0 published on Wednesday, Sep 27, 2023 by Pulumi

gcp.biglake.Database

Explore with Pulumi AI

gcp logo
Google Cloud Classic v6.67.0 published on Wednesday, Sep 27, 2023 by Pulumi

    Databases are containers of tables.

    To get more information about Database, see:

    Example Usage

    Biglake Database

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var catalog = new Gcp.BigLake.Catalog("catalog", new()
        {
            Location = "US",
        });
    
        var bucket = new Gcp.Storage.Bucket("bucket", new()
        {
            Location = "US",
            ForceDestroy = true,
            UniformBucketLevelAccess = true,
        });
    
        var metadataFolder = new Gcp.Storage.BucketObject("metadataFolder", new()
        {
            Content = " ",
            Bucket = bucket.Name,
        });
    
        var database = new Gcp.BigLake.Database("database", new()
        {
            Catalog = catalog.Id,
            Type = "HIVE",
            HiveOptions = new Gcp.BigLake.Inputs.DatabaseHiveOptionsArgs
            {
                LocationUri = Output.Tuple(bucket.Name, metadataFolder.Name).Apply(values =>
                {
                    var bucketName = values.Item1;
                    var metadataFolderName = values.Item2;
                    return $"gs://{bucketName}/{metadataFolderName}";
                }),
                Parameters = 
                {
                    { "owner", "John Doe" },
                },
            },
        });
    
    });
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/biglake"
    	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/storage"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		catalog, err := biglake.NewCatalog(ctx, "catalog", &biglake.CatalogArgs{
    			Location: pulumi.String("US"),
    		})
    		if err != nil {
    			return err
    		}
    		bucket, err := storage.NewBucket(ctx, "bucket", &storage.BucketArgs{
    			Location:                 pulumi.String("US"),
    			ForceDestroy:             pulumi.Bool(true),
    			UniformBucketLevelAccess: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		metadataFolder, err := storage.NewBucketObject(ctx, "metadataFolder", &storage.BucketObjectArgs{
    			Content: pulumi.String(" "),
    			Bucket:  bucket.Name,
    		})
    		if err != nil {
    			return err
    		}
    		_, err = biglake.NewDatabase(ctx, "database", &biglake.DatabaseArgs{
    			Catalog: catalog.ID(),
    			Type:    pulumi.String("HIVE"),
    			HiveOptions: &biglake.DatabaseHiveOptionsArgs{
    				LocationUri: pulumi.All(bucket.Name, metadataFolder.Name).ApplyT(func(_args []interface{}) (string, error) {
    					bucketName := _args[0].(string)
    					metadataFolderName := _args[1].(string)
    					return fmt.Sprintf("gs://%v/%v", bucketName, metadataFolderName), nil
    				}).(pulumi.StringOutput),
    				Parameters: pulumi.StringMap{
    					"owner": pulumi.String("John Doe"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.biglake.Catalog;
    import com.pulumi.gcp.biglake.CatalogArgs;
    import com.pulumi.gcp.storage.Bucket;
    import com.pulumi.gcp.storage.BucketArgs;
    import com.pulumi.gcp.storage.BucketObject;
    import com.pulumi.gcp.storage.BucketObjectArgs;
    import com.pulumi.gcp.biglake.Database;
    import com.pulumi.gcp.biglake.DatabaseArgs;
    import com.pulumi.gcp.biglake.inputs.DatabaseHiveOptionsArgs;
    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 catalog = new Catalog("catalog", CatalogArgs.builder()        
                .location("US")
                .build());
    
            var bucket = new Bucket("bucket", BucketArgs.builder()        
                .location("US")
                .forceDestroy(true)
                .uniformBucketLevelAccess(true)
                .build());
    
            var metadataFolder = new BucketObject("metadataFolder", BucketObjectArgs.builder()        
                .content(" ")
                .bucket(bucket.name())
                .build());
    
            var database = new Database("database", DatabaseArgs.builder()        
                .catalog(catalog.id())
                .type("HIVE")
                .hiveOptions(DatabaseHiveOptionsArgs.builder()
                    .locationUri(Output.tuple(bucket.name(), metadataFolder.name()).applyValue(values -> {
                        var bucketName = values.t1;
                        var metadataFolderName = values.t2;
                        return String.format("gs://%s/%s", bucketName,metadataFolderName);
                    }))
                    .parameters(Map.of("owner", "John Doe"))
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_gcp as gcp
    
    catalog = gcp.biglake.Catalog("catalog", location="US")
    bucket = gcp.storage.Bucket("bucket",
        location="US",
        force_destroy=True,
        uniform_bucket_level_access=True)
    metadata_folder = gcp.storage.BucketObject("metadataFolder",
        content=" ",
        bucket=bucket.name)
    database = gcp.biglake.Database("database",
        catalog=catalog.id,
        type="HIVE",
        hive_options=gcp.biglake.DatabaseHiveOptionsArgs(
            location_uri=pulumi.Output.all(bucket.name, metadata_folder.name).apply(lambda bucketName, metadataFolderName: f"gs://{bucket_name}/{metadata_folder_name}"),
            parameters={
                "owner": "John Doe",
            },
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const catalog = new gcp.biglake.Catalog("catalog", {location: "US"});
    const bucket = new gcp.storage.Bucket("bucket", {
        location: "US",
        forceDestroy: true,
        uniformBucketLevelAccess: true,
    });
    const metadataFolder = new gcp.storage.BucketObject("metadataFolder", {
        content: " ",
        bucket: bucket.name,
    });
    const database = new gcp.biglake.Database("database", {
        catalog: catalog.id,
        type: "HIVE",
        hiveOptions: {
            locationUri: pulumi.interpolate`gs://${bucket.name}/${metadataFolder.name}`,
            parameters: {
                owner: "John Doe",
            },
        },
    });
    
    resources:
      catalog:
        type: gcp:biglake:Catalog
        properties:
          location: US
      bucket:
        type: gcp:storage:Bucket
        properties:
          location: US
          forceDestroy: true
          uniformBucketLevelAccess: true
      metadataFolder:
        type: gcp:storage:BucketObject
        properties:
          content: ' '
          bucket: ${bucket.name}
      database:
        type: gcp:biglake:Database
        properties:
          catalog: ${catalog.id}
          type: HIVE
          hiveOptions:
            locationUri: gs://${bucket.name}/${metadataFolder.name}
            parameters:
              owner: John Doe
    

    Create Database Resource

    new Database(name: string, args: DatabaseArgs, opts?: CustomResourceOptions);
    @overload
    def Database(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 catalog: Optional[str] = None,
                 hive_options: Optional[DatabaseHiveOptionsArgs] = None,
                 name: Optional[str] = None,
                 type: Optional[str] = None)
    @overload
    def Database(resource_name: str,
                 args: DatabaseArgs,
                 opts: Optional[ResourceOptions] = None)
    func NewDatabase(ctx *Context, name string, args DatabaseArgs, opts ...ResourceOption) (*Database, error)
    public Database(string name, DatabaseArgs args, CustomResourceOptions? opts = null)
    public Database(String name, DatabaseArgs args)
    public Database(String name, DatabaseArgs args, CustomResourceOptions options)
    
    type: gcp:biglake:Database
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args DatabaseArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DatabaseArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DatabaseArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DatabaseArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DatabaseArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Database Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Database resource accepts the following input properties:

    Catalog string

    The parent catalog.

    HiveOptions DatabaseHiveOptions

    Options of a Hive database. Structure is documented below.

    Type string

    The database type.

    Name string

    The name of the database.

    Catalog string

    The parent catalog.

    HiveOptions DatabaseHiveOptionsArgs

    Options of a Hive database. Structure is documented below.

    Type string

    The database type.

    Name string

    The name of the database.

    catalog String

    The parent catalog.

    hiveOptions DatabaseHiveOptions

    Options of a Hive database. Structure is documented below.

    type String

    The database type.

    name String

    The name of the database.

    catalog string

    The parent catalog.

    hiveOptions DatabaseHiveOptions

    Options of a Hive database. Structure is documented below.

    type string

    The database type.

    name string

    The name of the database.

    catalog str

    The parent catalog.

    hive_options DatabaseHiveOptionsArgs

    Options of a Hive database. Structure is documented below.

    type str

    The database type.

    name str

    The name of the database.

    catalog String

    The parent catalog.

    hiveOptions Property Map

    Options of a Hive database. Structure is documented below.

    type String

    The database type.

    name String

    The name of the database.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Database resource produces the following output properties:

    CreateTime string

    Output only. The creation time of the database. 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".

    DeleteTime string

    Output only. The deletion time of the database. Only set after the database is deleted. 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".

    ExpireTime string

    Output only. The time when this database is considered expired. Only set after the database is deleted. 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".

    Id string

    The provider-assigned unique ID for this managed resource.

    UpdateTime string

    Output only. The last modification time of the database. 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".

    CreateTime string

    Output only. The creation time of the database. 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".

    DeleteTime string

    Output only. The deletion time of the database. Only set after the database is deleted. 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".

    ExpireTime string

    Output only. The time when this database is considered expired. Only set after the database is deleted. 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".

    Id string

    The provider-assigned unique ID for this managed resource.

    UpdateTime string

    Output only. The last modification time of the database. 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".

    createTime String

    Output only. The creation time of the database. 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".

    deleteTime String

    Output only. The deletion time of the database. Only set after the database is deleted. 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".

    expireTime String

    Output only. The time when this database is considered expired. Only set after the database is deleted. 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".

    id String

    The provider-assigned unique ID for this managed resource.

    updateTime String

    Output only. The last modification time of the database. 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".

    createTime string

    Output only. The creation time of the database. 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".

    deleteTime string

    Output only. The deletion time of the database. Only set after the database is deleted. 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".

    expireTime string

    Output only. The time when this database is considered expired. Only set after the database is deleted. 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".

    id string

    The provider-assigned unique ID for this managed resource.

    updateTime string

    Output only. The last modification time of the database. 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".

    create_time str

    Output only. The creation time of the database. 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".

    delete_time str

    Output only. The deletion time of the database. Only set after the database is deleted. 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".

    expire_time str

    Output only. The time when this database is considered expired. Only set after the database is deleted. 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".

    id str

    The provider-assigned unique ID for this managed resource.

    update_time str

    Output only. The last modification time of the database. 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".

    createTime String

    Output only. The creation time of the database. 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".

    deleteTime String

    Output only. The deletion time of the database. Only set after the database is deleted. 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".

    expireTime String

    Output only. The time when this database is considered expired. Only set after the database is deleted. 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".

    id String

    The provider-assigned unique ID for this managed resource.

    updateTime String

    Output only. The last modification time of the database. 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".

    Look up Existing Database Resource

    Get an existing Database resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DatabaseState, opts?: CustomResourceOptions): Database
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            catalog: Optional[str] = None,
            create_time: Optional[str] = None,
            delete_time: Optional[str] = None,
            expire_time: Optional[str] = None,
            hive_options: Optional[DatabaseHiveOptionsArgs] = None,
            name: Optional[str] = None,
            type: Optional[str] = None,
            update_time: Optional[str] = None) -> Database
    func GetDatabase(ctx *Context, name string, id IDInput, state *DatabaseState, opts ...ResourceOption) (*Database, error)
    public static Database Get(string name, Input<string> id, DatabaseState? state, CustomResourceOptions? opts = null)
    public static Database get(String name, Output<String> id, DatabaseState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Catalog string

    The parent catalog.

    CreateTime string

    Output only. The creation time of the database. 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".

    DeleteTime string

    Output only. The deletion time of the database. Only set after the database is deleted. 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".

    ExpireTime string

    Output only. The time when this database is considered expired. Only set after the database is deleted. 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".

    HiveOptions DatabaseHiveOptions

    Options of a Hive database. Structure is documented below.

    Name string

    The name of the database.

    Type string

    The database type.

    UpdateTime string

    Output only. The last modification time of the database. 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".

    Catalog string

    The parent catalog.

    CreateTime string

    Output only. The creation time of the database. 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".

    DeleteTime string

    Output only. The deletion time of the database. Only set after the database is deleted. 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".

    ExpireTime string

    Output only. The time when this database is considered expired. Only set after the database is deleted. 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".

    HiveOptions DatabaseHiveOptionsArgs

    Options of a Hive database. Structure is documented below.

    Name string

    The name of the database.

    Type string

    The database type.

    UpdateTime string

    Output only. The last modification time of the database. 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".

    catalog String

    The parent catalog.

    createTime String

    Output only. The creation time of the database. 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".

    deleteTime String

    Output only. The deletion time of the database. Only set after the database is deleted. 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".

    expireTime String

    Output only. The time when this database is considered expired. Only set after the database is deleted. 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".

    hiveOptions DatabaseHiveOptions

    Options of a Hive database. Structure is documented below.

    name String

    The name of the database.

    type String

    The database type.

    updateTime String

    Output only. The last modification time of the database. 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".

    catalog string

    The parent catalog.

    createTime string

    Output only. The creation time of the database. 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".

    deleteTime string

    Output only. The deletion time of the database. Only set after the database is deleted. 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".

    expireTime string

    Output only. The time when this database is considered expired. Only set after the database is deleted. 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".

    hiveOptions DatabaseHiveOptions

    Options of a Hive database. Structure is documented below.

    name string

    The name of the database.

    type string

    The database type.

    updateTime string

    Output only. The last modification time of the database. 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".

    catalog str

    The parent catalog.

    create_time str

    Output only. The creation time of the database. 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".

    delete_time str

    Output only. The deletion time of the database. Only set after the database is deleted. 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".

    expire_time str

    Output only. The time when this database is considered expired. Only set after the database is deleted. 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".

    hive_options DatabaseHiveOptionsArgs

    Options of a Hive database. Structure is documented below.

    name str

    The name of the database.

    type str

    The database type.

    update_time str

    Output only. The last modification time of the database. 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".

    catalog String

    The parent catalog.

    createTime String

    Output only. The creation time of the database. 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".

    deleteTime String

    Output only. The deletion time of the database. Only set after the database is deleted. 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".

    expireTime String

    Output only. The time when this database is considered expired. Only set after the database is deleted. 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".

    hiveOptions Property Map

    Options of a Hive database. Structure is documented below.

    name String

    The name of the database.

    type String

    The database type.

    updateTime String

    Output only. The last modification time of the database. 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".

    Supporting Types

    DatabaseHiveOptions, DatabaseHiveOptionsArgs

    LocationUri string

    Cloud Storage folder URI where the database data is stored, starting with "gs://".

    Parameters Dictionary<string, string>

    Stores user supplied Hive database parameters. An object containing a list of"key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.


    LocationUri string

    Cloud Storage folder URI where the database data is stored, starting with "gs://".

    Parameters map[string]string

    Stores user supplied Hive database parameters. An object containing a list of"key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.


    locationUri String

    Cloud Storage folder URI where the database data is stored, starting with "gs://".

    parameters Map<String,String>

    Stores user supplied Hive database parameters. An object containing a list of"key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.


    locationUri string

    Cloud Storage folder URI where the database data is stored, starting with "gs://".

    parameters {[key: string]: string}

    Stores user supplied Hive database parameters. An object containing a list of"key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.


    location_uri str

    Cloud Storage folder URI where the database data is stored, starting with "gs://".

    parameters Mapping[str, str]

    Stores user supplied Hive database parameters. An object containing a list of"key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.


    locationUri String

    Cloud Storage folder URI where the database data is stored, starting with "gs://".

    parameters Map<String>

    Stores user supplied Hive database parameters. An object containing a list of"key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.


    Import

    Database can be imported using any of these accepted formats:

     $ pulumi import gcp:biglake/database:Database default {{catalog}}/databases/{{name}}
    

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the google-beta Terraform Provider.

    gcp logo
    Google Cloud Classic v6.67.0 published on Wednesday, Sep 27, 2023 by Pulumi