gcp.firebase.DatabaseInstance
Explore with Pulumi AI
Example Usage
Firebase Database Instance Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const basic = new gcp.firebase.DatabaseInstance("basic", {
    project: "my-project-name",
    region: "us-central1",
    instanceId: "active-db",
});
import pulumi
import pulumi_gcp as gcp
basic = gcp.firebase.DatabaseInstance("basic",
    project="my-project-name",
    region="us-central1",
    instance_id="active-db")
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/firebase"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := firebase.NewDatabaseInstance(ctx, "basic", &firebase.DatabaseInstanceArgs{
			Project:    pulumi.String("my-project-name"),
			Region:     pulumi.String("us-central1"),
			InstanceId: pulumi.String("active-db"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var basic = new Gcp.Firebase.DatabaseInstance("basic", new()
    {
        Project = "my-project-name",
        Region = "us-central1",
        InstanceId = "active-db",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.firebase.DatabaseInstance;
import com.pulumi.gcp.firebase.DatabaseInstanceArgs;
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 basic = new DatabaseInstance("basic", DatabaseInstanceArgs.builder()
            .project("my-project-name")
            .region("us-central1")
            .instanceId("active-db")
            .build());
    }
}
resources:
  basic:
    type: gcp:firebase:DatabaseInstance
    properties:
      project: my-project-name
      region: us-central1
      instanceId: active-db
Firebase Database Instance Full
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const full = new gcp.firebase.DatabaseInstance("full", {
    project: "my-project-name",
    region: "europe-west1",
    instanceId: "disabled-db",
    type: "USER_DATABASE",
    desiredState: "DISABLED",
});
import pulumi
import pulumi_gcp as gcp
full = gcp.firebase.DatabaseInstance("full",
    project="my-project-name",
    region="europe-west1",
    instance_id="disabled-db",
    type="USER_DATABASE",
    desired_state="DISABLED")
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/firebase"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := firebase.NewDatabaseInstance(ctx, "full", &firebase.DatabaseInstanceArgs{
			Project:      pulumi.String("my-project-name"),
			Region:       pulumi.String("europe-west1"),
			InstanceId:   pulumi.String("disabled-db"),
			Type:         pulumi.String("USER_DATABASE"),
			DesiredState: pulumi.String("DISABLED"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var full = new Gcp.Firebase.DatabaseInstance("full", new()
    {
        Project = "my-project-name",
        Region = "europe-west1",
        InstanceId = "disabled-db",
        Type = "USER_DATABASE",
        DesiredState = "DISABLED",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.firebase.DatabaseInstance;
import com.pulumi.gcp.firebase.DatabaseInstanceArgs;
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 full = new DatabaseInstance("full", DatabaseInstanceArgs.builder()
            .project("my-project-name")
            .region("europe-west1")
            .instanceId("disabled-db")
            .type("USER_DATABASE")
            .desiredState("DISABLED")
            .build());
    }
}
resources:
  full:
    type: gcp:firebase:DatabaseInstance
    properties:
      project: my-project-name
      region: europe-west1
      instanceId: disabled-db
      type: USER_DATABASE
      desiredState: DISABLED
Firebase Database Instance Default Database
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
import * as time from "@pulumi/time";
const _default = new gcp.organizations.Project("default", {
    projectId: "rtdb-project",
    name: "rtdb-project",
    orgId: "123456789",
    deletionPolicy: "DELETE",
    labels: {
        firebase: "enabled",
    },
});
const firebase = new gcp.projects.Service("firebase", {
    project: _default.projectId,
    service: "firebase.googleapis.com",
    disableOnDestroy: false,
});
const defaultProject = new gcp.firebase.Project("default", {project: _default.projectId}, {
    dependsOn: [firebase],
});
const firebaseDatabase = new gcp.projects.Service("firebase_database", {
    project: defaultProject.project,
    service: "firebasedatabase.googleapis.com",
    disableOnDestroy: false,
});
const wait60Seconds = new time.index.Sleep("wait_60_seconds", {createDuration: "60s"}, {
    dependsOn: [firebaseDatabase],
});
const defaultDatabaseInstance = new gcp.firebase.DatabaseInstance("default", {
    project: defaultProject.project,
    region: "us-central1",
    instanceId: "rtdb-project-default-rtdb",
    type: "DEFAULT_DATABASE",
}, {
    dependsOn: [wait60Seconds],
});
import pulumi
import pulumi_gcp as gcp
import pulumi_time as time
default = gcp.organizations.Project("default",
    project_id="rtdb-project",
    name="rtdb-project",
    org_id="123456789",
    deletion_policy="DELETE",
    labels={
        "firebase": "enabled",
    })
firebase = gcp.projects.Service("firebase",
    project=default.project_id,
    service="firebase.googleapis.com",
    disable_on_destroy=False)
default_project = gcp.firebase.Project("default", project=default.project_id,
opts = pulumi.ResourceOptions(depends_on=[firebase]))
firebase_database = gcp.projects.Service("firebase_database",
    project=default_project.project,
    service="firebasedatabase.googleapis.com",
    disable_on_destroy=False)
wait60_seconds = time.index.Sleep("wait_60_seconds", create_duration=60s,
opts = pulumi.ResourceOptions(depends_on=[firebase_database]))
default_database_instance = gcp.firebase.DatabaseInstance("default",
    project=default_project.project,
    region="us-central1",
    instance_id="rtdb-project-default-rtdb",
    type="DEFAULT_DATABASE",
    opts = pulumi.ResourceOptions(depends_on=[wait60_seconds]))
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/firebase"
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/organizations"
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/projects"
	"github.com/pulumi/pulumi-time/sdk/go/time"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_default, err := organizations.NewProject(ctx, "default", &organizations.ProjectArgs{
			ProjectId:      pulumi.String("rtdb-project"),
			Name:           pulumi.String("rtdb-project"),
			OrgId:          pulumi.String("123456789"),
			DeletionPolicy: pulumi.String("DELETE"),
			Labels: pulumi.StringMap{
				"firebase": pulumi.String("enabled"),
			},
		})
		if err != nil {
			return err
		}
		firebase, err := projects.NewService(ctx, "firebase", &projects.ServiceArgs{
			Project:          _default.ProjectId,
			Service:          pulumi.String("firebase.googleapis.com"),
			DisableOnDestroy: pulumi.Bool(false),
		})
		if err != nil {
			return err
		}
		defaultProject, err := firebase.NewProject(ctx, "default", &firebase.ProjectArgs{
			Project: _default.ProjectId,
		}, pulumi.DependsOn([]pulumi.Resource{
			firebase,
		}))
		if err != nil {
			return err
		}
		firebaseDatabase, err := projects.NewService(ctx, "firebase_database", &projects.ServiceArgs{
			Project:          defaultProject.Project,
			Service:          pulumi.String("firebasedatabase.googleapis.com"),
			DisableOnDestroy: pulumi.Bool(false),
		})
		if err != nil {
			return err
		}
		wait60Seconds, err := time.NewSleep(ctx, "wait_60_seconds", &time.SleepArgs{
			CreateDuration: "60s",
		}, pulumi.DependsOn([]pulumi.Resource{
			firebaseDatabase,
		}))
		if err != nil {
			return err
		}
		_, err = firebase.NewDatabaseInstance(ctx, "default", &firebase.DatabaseInstanceArgs{
			Project:    defaultProject.Project,
			Region:     pulumi.String("us-central1"),
			InstanceId: pulumi.String("rtdb-project-default-rtdb"),
			Type:       pulumi.String("DEFAULT_DATABASE"),
		}, pulumi.DependsOn([]pulumi.Resource{
			wait60Seconds,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
using Time = Pulumi.Time;
return await Deployment.RunAsync(() => 
{
    var @default = new Gcp.Organizations.Project("default", new()
    {
        ProjectId = "rtdb-project",
        Name = "rtdb-project",
        OrgId = "123456789",
        DeletionPolicy = "DELETE",
        Labels = 
        {
            { "firebase", "enabled" },
        },
    });
    var firebase = new Gcp.Projects.Service("firebase", new()
    {
        Project = @default.ProjectId,
        ServiceName = "firebase.googleapis.com",
        DisableOnDestroy = false,
    });
    var defaultProject = new Gcp.Firebase.Project("default", new()
    {
        ProjectID = @default.ProjectId,
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            firebase,
        },
    });
    var firebaseDatabase = new Gcp.Projects.Service("firebase_database", new()
    {
        Project = defaultProject.ProjectID,
        ServiceName = "firebasedatabase.googleapis.com",
        DisableOnDestroy = false,
    });
    var wait60Seconds = new Time.Index.Sleep("wait_60_seconds", new()
    {
        CreateDuration = "60s",
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            firebaseDatabase,
        },
    });
    var defaultDatabaseInstance = new Gcp.Firebase.DatabaseInstance("default", new()
    {
        Project = defaultProject.ProjectID,
        Region = "us-central1",
        InstanceId = "rtdb-project-default-rtdb",
        Type = "DEFAULT_DATABASE",
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            wait60Seconds,
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.organizations.Project;
import com.pulumi.gcp.organizations.ProjectArgs;
import com.pulumi.gcp.projects.Service;
import com.pulumi.gcp.projects.ServiceArgs;
import com.pulumi.gcp.firebase.Project;
import com.pulumi.gcp.firebase.ProjectArgs;
import com.pulumi.time.sleep;
import com.pulumi.time.SleepArgs;
import com.pulumi.gcp.firebase.DatabaseInstance;
import com.pulumi.gcp.firebase.DatabaseInstanceArgs;
import com.pulumi.resources.CustomResourceOptions;
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 default_ = new Project("default", ProjectArgs.builder()
            .projectId("rtdb-project")
            .name("rtdb-project")
            .orgId("123456789")
            .deletionPolicy("DELETE")
            .labels(Map.of("firebase", "enabled"))
            .build());
        var firebase = new Service("firebase", ServiceArgs.builder()
            .project(default_.projectId())
            .service("firebase.googleapis.com")
            .disableOnDestroy(false)
            .build());
        var defaultProject = new Project("defaultProject", ProjectArgs.builder()
            .project(default_.projectId())
            .build(), CustomResourceOptions.builder()
                .dependsOn(firebase)
                .build());
        var firebaseDatabase = new Service("firebaseDatabase", ServiceArgs.builder()
            .project(defaultProject.project())
            .service("firebasedatabase.googleapis.com")
            .disableOnDestroy(false)
            .build());
        var wait60Seconds = new Sleep("wait60Seconds", SleepArgs.builder()
            .createDuration("60s")
            .build(), CustomResourceOptions.builder()
                .dependsOn(firebaseDatabase)
                .build());
        var defaultDatabaseInstance = new DatabaseInstance("defaultDatabaseInstance", DatabaseInstanceArgs.builder()
            .project(defaultProject.project())
            .region("us-central1")
            .instanceId("rtdb-project-default-rtdb")
            .type("DEFAULT_DATABASE")
            .build(), CustomResourceOptions.builder()
                .dependsOn(wait60Seconds)
                .build());
    }
}
resources:
  default:
    type: gcp:organizations:Project
    properties:
      projectId: rtdb-project
      name: rtdb-project
      orgId: '123456789'
      deletionPolicy: DELETE
      labels:
        firebase: enabled
  firebase:
    type: gcp:projects:Service
    properties:
      project: ${default.projectId}
      service: firebase.googleapis.com
      disableOnDestroy: false
  defaultProject:
    type: gcp:firebase:Project
    name: default
    properties:
      project: ${default.projectId}
    options:
      dependsOn:
        - ${firebase}
  firebaseDatabase:
    type: gcp:projects:Service
    name: firebase_database
    properties:
      project: ${defaultProject.project}
      service: firebasedatabase.googleapis.com
      disableOnDestroy: false
  wait60Seconds:
    type: time:sleep
    name: wait_60_seconds
    properties:
      createDuration: 60s
    options:
      dependsOn:
        - ${firebaseDatabase}
  defaultDatabaseInstance:
    type: gcp:firebase:DatabaseInstance
    name: default
    properties:
      project: ${defaultProject.project}
      region: us-central1
      instanceId: rtdb-project-default-rtdb
      type: DEFAULT_DATABASE
    options:
      dependsOn:
        - ${wait60Seconds}
Create DatabaseInstance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DatabaseInstance(name: string, args: DatabaseInstanceArgs, opts?: CustomResourceOptions);@overload
def DatabaseInstance(resource_name: str,
                     args: DatabaseInstanceArgs,
                     opts: Optional[ResourceOptions] = None)
@overload
def DatabaseInstance(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     instance_id: Optional[str] = None,
                     region: Optional[str] = None,
                     desired_state: Optional[str] = None,
                     project: Optional[str] = None,
                     type: Optional[str] = None)func NewDatabaseInstance(ctx *Context, name string, args DatabaseInstanceArgs, opts ...ResourceOption) (*DatabaseInstance, error)public DatabaseInstance(string name, DatabaseInstanceArgs args, CustomResourceOptions? opts = null)
public DatabaseInstance(String name, DatabaseInstanceArgs args)
public DatabaseInstance(String name, DatabaseInstanceArgs args, CustomResourceOptions options)
type: gcp:firebase:DatabaseInstance
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DatabaseInstanceArgs
- 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 DatabaseInstanceArgs
- 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 DatabaseInstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DatabaseInstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DatabaseInstanceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var databaseInstanceResource = new Gcp.Firebase.DatabaseInstance("databaseInstanceResource", new()
{
    InstanceId = "string",
    Region = "string",
    DesiredState = "string",
    Project = "string",
    Type = "string",
});
example, err := firebase.NewDatabaseInstance(ctx, "databaseInstanceResource", &firebase.DatabaseInstanceArgs{
	InstanceId:   pulumi.String("string"),
	Region:       pulumi.String("string"),
	DesiredState: pulumi.String("string"),
	Project:      pulumi.String("string"),
	Type:         pulumi.String("string"),
})
var databaseInstanceResource = new DatabaseInstance("databaseInstanceResource", DatabaseInstanceArgs.builder()
    .instanceId("string")
    .region("string")
    .desiredState("string")
    .project("string")
    .type("string")
    .build());
database_instance_resource = gcp.firebase.DatabaseInstance("databaseInstanceResource",
    instance_id="string",
    region="string",
    desired_state="string",
    project="string",
    type="string")
const databaseInstanceResource = new gcp.firebase.DatabaseInstance("databaseInstanceResource", {
    instanceId: "string",
    region: "string",
    desiredState: "string",
    project: "string",
    type: "string",
});
type: gcp:firebase:DatabaseInstance
properties:
    desiredState: string
    instanceId: string
    project: string
    region: string
    type: string
DatabaseInstance Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DatabaseInstance resource accepts the following input properties:
- InstanceId string
- The globally unique identifier of the Firebase Realtime Database instance.
Instance IDs cannot be reused after deletion.
- Region string
- A reference to the region where the Firebase Realtime database resides. Check all available regions
- DesiredState string
- The intended database state. Possible values: ACTIVE, DISABLED.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Type string
- The database type.
Each project can create one default Firebase Realtime Database, which cannot be deleted once created.
Creating user Databases is only available for projects on the Blaze plan.
Projects can be upgraded using the Cloud Billing API https://cloud.google.com/billing/reference/rest/v1/projects/updateBillingInfo.
Default value is USER_DATABASE. Possible values are:DEFAULT_DATABASE,USER_DATABASE.
- InstanceId string
- The globally unique identifier of the Firebase Realtime Database instance.
Instance IDs cannot be reused after deletion.
- Region string
- A reference to the region where the Firebase Realtime database resides. Check all available regions
- DesiredState string
- The intended database state. Possible values: ACTIVE, DISABLED.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Type string
- The database type.
Each project can create one default Firebase Realtime Database, which cannot be deleted once created.
Creating user Databases is only available for projects on the Blaze plan.
Projects can be upgraded using the Cloud Billing API https://cloud.google.com/billing/reference/rest/v1/projects/updateBillingInfo.
Default value is USER_DATABASE. Possible values are:DEFAULT_DATABASE,USER_DATABASE.
- instanceId String
- The globally unique identifier of the Firebase Realtime Database instance.
Instance IDs cannot be reused after deletion.
- region String
- A reference to the region where the Firebase Realtime database resides. Check all available regions
- desiredState String
- The intended database state. Possible values: ACTIVE, DISABLED.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- type String
- The database type.
Each project can create one default Firebase Realtime Database, which cannot be deleted once created.
Creating user Databases is only available for projects on the Blaze plan.
Projects can be upgraded using the Cloud Billing API https://cloud.google.com/billing/reference/rest/v1/projects/updateBillingInfo.
Default value is USER_DATABASE. Possible values are:DEFAULT_DATABASE,USER_DATABASE.
- instanceId string
- The globally unique identifier of the Firebase Realtime Database instance.
Instance IDs cannot be reused after deletion.
- region string
- A reference to the region where the Firebase Realtime database resides. Check all available regions
- desiredState string
- The intended database state. Possible values: ACTIVE, DISABLED.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- type string
- The database type.
Each project can create one default Firebase Realtime Database, which cannot be deleted once created.
Creating user Databases is only available for projects on the Blaze plan.
Projects can be upgraded using the Cloud Billing API https://cloud.google.com/billing/reference/rest/v1/projects/updateBillingInfo.
Default value is USER_DATABASE. Possible values are:DEFAULT_DATABASE,USER_DATABASE.
- instance_id str
- The globally unique identifier of the Firebase Realtime Database instance.
Instance IDs cannot be reused after deletion.
- region str
- A reference to the region where the Firebase Realtime database resides. Check all available regions
- desired_state str
- The intended database state. Possible values: ACTIVE, DISABLED.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- type str
- The database type.
Each project can create one default Firebase Realtime Database, which cannot be deleted once created.
Creating user Databases is only available for projects on the Blaze plan.
Projects can be upgraded using the Cloud Billing API https://cloud.google.com/billing/reference/rest/v1/projects/updateBillingInfo.
Default value is USER_DATABASE. Possible values are:DEFAULT_DATABASE,USER_DATABASE.
- instanceId String
- The globally unique identifier of the Firebase Realtime Database instance.
Instance IDs cannot be reused after deletion.
- region String
- A reference to the region where the Firebase Realtime database resides. Check all available regions
- desiredState String
- The intended database state. Possible values: ACTIVE, DISABLED.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- type String
- The database type.
Each project can create one default Firebase Realtime Database, which cannot be deleted once created.
Creating user Databases is only available for projects on the Blaze plan.
Projects can be upgraded using the Cloud Billing API https://cloud.google.com/billing/reference/rest/v1/projects/updateBillingInfo.
Default value is USER_DATABASE. Possible values are:DEFAULT_DATABASE,USER_DATABASE.
Outputs
All input properties are implicitly available as output properties. Additionally, the DatabaseInstance resource produces the following output properties:
- DatabaseUrl string
- The database URL in the form of https://{instance-id}.firebaseio.com for us-central1 instances or https://{instance-id}.{region}.firebasedatabase.app in other regions.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The fully-qualified resource name of the Firebase Realtime Database, in
the format: projects/PROJECT_NUMBER/locations/REGION_IDENTIFIER/instances/INSTANCE_ID
PROJECT_NUMBER: The Firebase project's ProjectNumberLearn more about using project identifiers in Google's AIP 2510 standard.
- State string
- The current database state. Set desired_state to :DISABLED to disable the database and :ACTIVE to reenable the database
- DatabaseUrl string
- The database URL in the form of https://{instance-id}.firebaseio.com for us-central1 instances or https://{instance-id}.{region}.firebasedatabase.app in other regions.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The fully-qualified resource name of the Firebase Realtime Database, in
the format: projects/PROJECT_NUMBER/locations/REGION_IDENTIFIER/instances/INSTANCE_ID
PROJECT_NUMBER: The Firebase project's ProjectNumberLearn more about using project identifiers in Google's AIP 2510 standard.
- State string
- The current database state. Set desired_state to :DISABLED to disable the database and :ACTIVE to reenable the database
- databaseUrl String
- The database URL in the form of https://{instance-id}.firebaseio.com for us-central1 instances or https://{instance-id}.{region}.firebasedatabase.app in other regions.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The fully-qualified resource name of the Firebase Realtime Database, in
the format: projects/PROJECT_NUMBER/locations/REGION_IDENTIFIER/instances/INSTANCE_ID
PROJECT_NUMBER: The Firebase project's ProjectNumberLearn more about using project identifiers in Google's AIP 2510 standard.
- state String
- The current database state. Set desired_state to :DISABLED to disable the database and :ACTIVE to reenable the database
- databaseUrl string
- The database URL in the form of https://{instance-id}.firebaseio.com for us-central1 instances or https://{instance-id}.{region}.firebasedatabase.app in other regions.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The fully-qualified resource name of the Firebase Realtime Database, in
the format: projects/PROJECT_NUMBER/locations/REGION_IDENTIFIER/instances/INSTANCE_ID
PROJECT_NUMBER: The Firebase project's ProjectNumberLearn more about using project identifiers in Google's AIP 2510 standard.
- state string
- The current database state. Set desired_state to :DISABLED to disable the database and :ACTIVE to reenable the database
- database_url str
- The database URL in the form of https://{instance-id}.firebaseio.com for us-central1 instances or https://{instance-id}.{region}.firebasedatabase.app in other regions.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The fully-qualified resource name of the Firebase Realtime Database, in
the format: projects/PROJECT_NUMBER/locations/REGION_IDENTIFIER/instances/INSTANCE_ID
PROJECT_NUMBER: The Firebase project's ProjectNumberLearn more about using project identifiers in Google's AIP 2510 standard.
- state str
- The current database state. Set desired_state to :DISABLED to disable the database and :ACTIVE to reenable the database
- databaseUrl String
- The database URL in the form of https://{instance-id}.firebaseio.com for us-central1 instances or https://{instance-id}.{region}.firebasedatabase.app in other regions.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The fully-qualified resource name of the Firebase Realtime Database, in
the format: projects/PROJECT_NUMBER/locations/REGION_IDENTIFIER/instances/INSTANCE_ID
PROJECT_NUMBER: The Firebase project's ProjectNumberLearn more about using project identifiers in Google's AIP 2510 standard.
- state String
- The current database state. Set desired_state to :DISABLED to disable the database and :ACTIVE to reenable the database
Look up Existing DatabaseInstance Resource
Get an existing DatabaseInstance 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?: DatabaseInstanceState, opts?: CustomResourceOptions): DatabaseInstance@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        database_url: Optional[str] = None,
        desired_state: Optional[str] = None,
        instance_id: Optional[str] = None,
        name: Optional[str] = None,
        project: Optional[str] = None,
        region: Optional[str] = None,
        state: Optional[str] = None,
        type: Optional[str] = None) -> DatabaseInstancefunc GetDatabaseInstance(ctx *Context, name string, id IDInput, state *DatabaseInstanceState, opts ...ResourceOption) (*DatabaseInstance, error)public static DatabaseInstance Get(string name, Input<string> id, DatabaseInstanceState? state, CustomResourceOptions? opts = null)public static DatabaseInstance get(String name, Output<String> id, DatabaseInstanceState state, CustomResourceOptions options)resources:  _:    type: gcp:firebase:DatabaseInstance    get:      id: ${id}- 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.
- DatabaseUrl string
- The database URL in the form of https://{instance-id}.firebaseio.com for us-central1 instances or https://{instance-id}.{region}.firebasedatabase.app in other regions.
- DesiredState string
- The intended database state. Possible values: ACTIVE, DISABLED.
- InstanceId string
- The globally unique identifier of the Firebase Realtime Database instance.
Instance IDs cannot be reused after deletion.
- Name string
- The fully-qualified resource name of the Firebase Realtime Database, in
the format: projects/PROJECT_NUMBER/locations/REGION_IDENTIFIER/instances/INSTANCE_ID
PROJECT_NUMBER: The Firebase project's ProjectNumberLearn more about using project identifiers in Google's AIP 2510 standard.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Region string
- A reference to the region where the Firebase Realtime database resides. Check all available regions
- State string
- The current database state. Set desired_state to :DISABLED to disable the database and :ACTIVE to reenable the database
- Type string
- The database type.
Each project can create one default Firebase Realtime Database, which cannot be deleted once created.
Creating user Databases is only available for projects on the Blaze plan.
Projects can be upgraded using the Cloud Billing API https://cloud.google.com/billing/reference/rest/v1/projects/updateBillingInfo.
Default value is USER_DATABASE. Possible values are:DEFAULT_DATABASE,USER_DATABASE.
- DatabaseUrl string
- The database URL in the form of https://{instance-id}.firebaseio.com for us-central1 instances or https://{instance-id}.{region}.firebasedatabase.app in other regions.
- DesiredState string
- The intended database state. Possible values: ACTIVE, DISABLED.
- InstanceId string
- The globally unique identifier of the Firebase Realtime Database instance.
Instance IDs cannot be reused after deletion.
- Name string
- The fully-qualified resource name of the Firebase Realtime Database, in
the format: projects/PROJECT_NUMBER/locations/REGION_IDENTIFIER/instances/INSTANCE_ID
PROJECT_NUMBER: The Firebase project's ProjectNumberLearn more about using project identifiers in Google's AIP 2510 standard.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Region string
- A reference to the region where the Firebase Realtime database resides. Check all available regions
- State string
- The current database state. Set desired_state to :DISABLED to disable the database and :ACTIVE to reenable the database
- Type string
- The database type.
Each project can create one default Firebase Realtime Database, which cannot be deleted once created.
Creating user Databases is only available for projects on the Blaze plan.
Projects can be upgraded using the Cloud Billing API https://cloud.google.com/billing/reference/rest/v1/projects/updateBillingInfo.
Default value is USER_DATABASE. Possible values are:DEFAULT_DATABASE,USER_DATABASE.
- databaseUrl String
- The database URL in the form of https://{instance-id}.firebaseio.com for us-central1 instances or https://{instance-id}.{region}.firebasedatabase.app in other regions.
- desiredState String
- The intended database state. Possible values: ACTIVE, DISABLED.
- instanceId String
- The globally unique identifier of the Firebase Realtime Database instance.
Instance IDs cannot be reused after deletion.
- name String
- The fully-qualified resource name of the Firebase Realtime Database, in
the format: projects/PROJECT_NUMBER/locations/REGION_IDENTIFIER/instances/INSTANCE_ID
PROJECT_NUMBER: The Firebase project's ProjectNumberLearn more about using project identifiers in Google's AIP 2510 standard.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region String
- A reference to the region where the Firebase Realtime database resides. Check all available regions
- state String
- The current database state. Set desired_state to :DISABLED to disable the database and :ACTIVE to reenable the database
- type String
- The database type.
Each project can create one default Firebase Realtime Database, which cannot be deleted once created.
Creating user Databases is only available for projects on the Blaze plan.
Projects can be upgraded using the Cloud Billing API https://cloud.google.com/billing/reference/rest/v1/projects/updateBillingInfo.
Default value is USER_DATABASE. Possible values are:DEFAULT_DATABASE,USER_DATABASE.
- databaseUrl string
- The database URL in the form of https://{instance-id}.firebaseio.com for us-central1 instances or https://{instance-id}.{region}.firebasedatabase.app in other regions.
- desiredState string
- The intended database state. Possible values: ACTIVE, DISABLED.
- instanceId string
- The globally unique identifier of the Firebase Realtime Database instance.
Instance IDs cannot be reused after deletion.
- name string
- The fully-qualified resource name of the Firebase Realtime Database, in
the format: projects/PROJECT_NUMBER/locations/REGION_IDENTIFIER/instances/INSTANCE_ID
PROJECT_NUMBER: The Firebase project's ProjectNumberLearn more about using project identifiers in Google's AIP 2510 standard.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region string
- A reference to the region where the Firebase Realtime database resides. Check all available regions
- state string
- The current database state. Set desired_state to :DISABLED to disable the database and :ACTIVE to reenable the database
- type string
- The database type.
Each project can create one default Firebase Realtime Database, which cannot be deleted once created.
Creating user Databases is only available for projects on the Blaze plan.
Projects can be upgraded using the Cloud Billing API https://cloud.google.com/billing/reference/rest/v1/projects/updateBillingInfo.
Default value is USER_DATABASE. Possible values are:DEFAULT_DATABASE,USER_DATABASE.
- database_url str
- The database URL in the form of https://{instance-id}.firebaseio.com for us-central1 instances or https://{instance-id}.{region}.firebasedatabase.app in other regions.
- desired_state str
- The intended database state. Possible values: ACTIVE, DISABLED.
- instance_id str
- The globally unique identifier of the Firebase Realtime Database instance.
Instance IDs cannot be reused after deletion.
- name str
- The fully-qualified resource name of the Firebase Realtime Database, in
the format: projects/PROJECT_NUMBER/locations/REGION_IDENTIFIER/instances/INSTANCE_ID
PROJECT_NUMBER: The Firebase project's ProjectNumberLearn more about using project identifiers in Google's AIP 2510 standard.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region str
- A reference to the region where the Firebase Realtime database resides. Check all available regions
- state str
- The current database state. Set desired_state to :DISABLED to disable the database and :ACTIVE to reenable the database
- type str
- The database type.
Each project can create one default Firebase Realtime Database, which cannot be deleted once created.
Creating user Databases is only available for projects on the Blaze plan.
Projects can be upgraded using the Cloud Billing API https://cloud.google.com/billing/reference/rest/v1/projects/updateBillingInfo.
Default value is USER_DATABASE. Possible values are:DEFAULT_DATABASE,USER_DATABASE.
- databaseUrl String
- The database URL in the form of https://{instance-id}.firebaseio.com for us-central1 instances or https://{instance-id}.{region}.firebasedatabase.app in other regions.
- desiredState String
- The intended database state. Possible values: ACTIVE, DISABLED.
- instanceId String
- The globally unique identifier of the Firebase Realtime Database instance.
Instance IDs cannot be reused after deletion.
- name String
- The fully-qualified resource name of the Firebase Realtime Database, in
the format: projects/PROJECT_NUMBER/locations/REGION_IDENTIFIER/instances/INSTANCE_ID
PROJECT_NUMBER: The Firebase project's ProjectNumberLearn more about using project identifiers in Google's AIP 2510 standard.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region String
- A reference to the region where the Firebase Realtime database resides. Check all available regions
- state String
- The current database state. Set desired_state to :DISABLED to disable the database and :ACTIVE to reenable the database
- type String
- The database type.
Each project can create one default Firebase Realtime Database, which cannot be deleted once created.
Creating user Databases is only available for projects on the Blaze plan.
Projects can be upgraded using the Cloud Billing API https://cloud.google.com/billing/reference/rest/v1/projects/updateBillingInfo.
Default value is USER_DATABASE. Possible values are:DEFAULT_DATABASE,USER_DATABASE.
Import
Instance can be imported using any of these accepted formats:
- projects/{{project}}/locations/{{region}}/instances/{{instance_id}}
- {{project}}/{{region}}/{{instance_id}}
- {{region}}/{{instance_id}}
- {{instance_id}}
When using the pulumi import command, Instance can be imported using one of the formats above. For example:
$ pulumi import gcp:firebase/databaseInstance:DatabaseInstance default projects/{{project}}/locations/{{region}}/instances/{{instance_id}}
$ pulumi import gcp:firebase/databaseInstance:DatabaseInstance default {{project}}/{{region}}/{{instance_id}}
$ pulumi import gcp:firebase/databaseInstance:DatabaseInstance default {{region}}/{{instance_id}}
$ pulumi import gcp:firebase/databaseInstance:DatabaseInstance default {{instance_id}}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the google-betaTerraform Provider.