planetscale.Database
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as planetscale from "@pulumi/planetscale";
const example = new planetscale.Database("example", {
clusterSize: "PS_10",
organization: "example",
});
import pulumi
import pulumi_planetscale as planetscale
example = planetscale.Database("example",
cluster_size="PS_10",
organization="example")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/planetscale/planetscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := planetscale.NewDatabase(ctx, "example", &planetscale.DatabaseArgs{
ClusterSize: pulumi.String("PS_10"),
Organization: pulumi.String("example"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Planetscale = Pulumi.Planetscale;
return await Deployment.RunAsync(() =>
{
var example = new Planetscale.Database("example", new()
{
ClusterSize = "PS_10",
Organization = "example",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.planetscale.Database;
import com.pulumi.planetscale.DatabaseArgs;
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 example = new Database("example", DatabaseArgs.builder()
.clusterSize("PS_10")
.organization("example")
.build());
}
}
resources:
example:
type: planetscale:Database
properties:
clusterSize: PS_10
organization: example
Create Database Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Database(name: string, args: DatabaseArgs, opts?: CustomResourceOptions);
@overload
def Database(resource_name: str,
args: DatabaseArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Database(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_size: Optional[str] = None,
organization: Optional[str] = None,
migration_table_name: Optional[str] = None,
default_branch: Optional[str] = None,
insights_raw_queries: Optional[bool] = None,
migration_framework: Optional[str] = None,
allow_data_branching: Optional[bool] = None,
name: Optional[str] = None,
automatic_migrations: Optional[bool] = None,
production_branch_web_console: Optional[bool] = None,
region: Optional[str] = None,
require_approval_for_deploy: Optional[bool] = None,
restrict_branch_region: Optional[bool] = 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: planetscale:Database
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 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var databaseResource = new Planetscale.Database("databaseResource", new()
{
ClusterSize = "string",
Organization = "string",
MigrationTableName = "string",
DefaultBranch = "string",
InsightsRawQueries = false,
MigrationFramework = "string",
AllowDataBranching = false,
Name = "string",
AutomaticMigrations = false,
ProductionBranchWebConsole = false,
Region = "string",
RequireApprovalForDeploy = false,
RestrictBranchRegion = false,
});
example, err := planetscale.NewDatabase(ctx, "databaseResource", &planetscale.DatabaseArgs{
ClusterSize: pulumi.String("string"),
Organization: pulumi.String("string"),
MigrationTableName: pulumi.String("string"),
DefaultBranch: pulumi.String("string"),
InsightsRawQueries: pulumi.Bool(false),
MigrationFramework: pulumi.String("string"),
AllowDataBranching: pulumi.Bool(false),
Name: pulumi.String("string"),
AutomaticMigrations: pulumi.Bool(false),
ProductionBranchWebConsole: pulumi.Bool(false),
Region: pulumi.String("string"),
RequireApprovalForDeploy: pulumi.Bool(false),
RestrictBranchRegion: pulumi.Bool(false),
})
var databaseResource = new Database("databaseResource", DatabaseArgs.builder()
.clusterSize("string")
.organization("string")
.migrationTableName("string")
.defaultBranch("string")
.insightsRawQueries(false)
.migrationFramework("string")
.allowDataBranching(false)
.name("string")
.automaticMigrations(false)
.productionBranchWebConsole(false)
.region("string")
.requireApprovalForDeploy(false)
.restrictBranchRegion(false)
.build());
database_resource = planetscale.Database("databaseResource",
cluster_size="string",
organization="string",
migration_table_name="string",
default_branch="string",
insights_raw_queries=False,
migration_framework="string",
allow_data_branching=False,
name="string",
automatic_migrations=False,
production_branch_web_console=False,
region="string",
require_approval_for_deploy=False,
restrict_branch_region=False)
const databaseResource = new planetscale.Database("databaseResource", {
clusterSize: "string",
organization: "string",
migrationTableName: "string",
defaultBranch: "string",
insightsRawQueries: false,
migrationFramework: "string",
allowDataBranching: false,
name: "string",
automaticMigrations: false,
productionBranchWebConsole: false,
region: "string",
requireApprovalForDeploy: false,
restrictBranchRegion: false,
});
type: planetscale:Database
properties:
allowDataBranching: false
automaticMigrations: false
clusterSize: string
defaultBranch: string
insightsRawQueries: false
migrationFramework: string
migrationTableName: string
name: string
organization: string
productionBranchWebConsole: false
region: string
requireApprovalForDeploy: false
restrictBranchRegion: false
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Database resource accepts the following input properties:
- Cluster
Size string - The default plan size of the database's branches.
- Organization string
- The organization this database belongs to.
- Allow
Data boolBranching - Whether seeding branches with data is enabled for all branches.
- Automatic
Migrations bool - Whether to automatically manage migrations during deploy requests. If true,
migration_table_name
andmigration_framework
must be set. - Default
Branch string - The default branch for the database.
- Insights
Raw boolQueries - The URL to see this database's branches in the web UI.
- Migration
Framework string - Framework used for applying migrations.
- Migration
Table stringName - Table name to use for copying schema migration data.
- Name string
- The name of this database.
- Production
Branch boolWeb Console - Whether web console is enabled for production branches.
- Region string
- The region the database lives in.
- Require
Approval boolFor Deploy - Whether an approval is required to deploy schema changes to this database.
- Restrict
Branch boolRegion - Whether to restrict branch creation to one region.
- Cluster
Size string - The default plan size of the database's branches.
- Organization string
- The organization this database belongs to.
- Allow
Data boolBranching - Whether seeding branches with data is enabled for all branches.
- Automatic
Migrations bool - Whether to automatically manage migrations during deploy requests. If true,
migration_table_name
andmigration_framework
must be set. - Default
Branch string - The default branch for the database.
- Insights
Raw boolQueries - The URL to see this database's branches in the web UI.
- Migration
Framework string - Framework used for applying migrations.
- Migration
Table stringName - Table name to use for copying schema migration data.
- Name string
- The name of this database.
- Production
Branch boolWeb Console - Whether web console is enabled for production branches.
- Region string
- The region the database lives in.
- Require
Approval boolFor Deploy - Whether an approval is required to deploy schema changes to this database.
- Restrict
Branch boolRegion - Whether to restrict branch creation to one region.
- cluster
Size String - The default plan size of the database's branches.
- organization String
- The organization this database belongs to.
- allow
Data BooleanBranching - Whether seeding branches with data is enabled for all branches.
- automatic
Migrations Boolean - Whether to automatically manage migrations during deploy requests. If true,
migration_table_name
andmigration_framework
must be set. - default
Branch String - The default branch for the database.
- insights
Raw BooleanQueries - The URL to see this database's branches in the web UI.
- migration
Framework String - Framework used for applying migrations.
- migration
Table StringName - Table name to use for copying schema migration data.
- name String
- The name of this database.
- production
Branch BooleanWeb Console - Whether web console is enabled for production branches.
- region String
- The region the database lives in.
- require
Approval BooleanFor Deploy - Whether an approval is required to deploy schema changes to this database.
- restrict
Branch BooleanRegion - Whether to restrict branch creation to one region.
- cluster
Size string - The default plan size of the database's branches.
- organization string
- The organization this database belongs to.
- allow
Data booleanBranching - Whether seeding branches with data is enabled for all branches.
- automatic
Migrations boolean - Whether to automatically manage migrations during deploy requests. If true,
migration_table_name
andmigration_framework
must be set. - default
Branch string - The default branch for the database.
- insights
Raw booleanQueries - The URL to see this database's branches in the web UI.
- migration
Framework string - Framework used for applying migrations.
- migration
Table stringName - Table name to use for copying schema migration data.
- name string
- The name of this database.
- production
Branch booleanWeb Console - Whether web console is enabled for production branches.
- region string
- The region the database lives in.
- require
Approval booleanFor Deploy - Whether an approval is required to deploy schema changes to this database.
- restrict
Branch booleanRegion - Whether to restrict branch creation to one region.
- cluster_
size str - The default plan size of the database's branches.
- organization str
- The organization this database belongs to.
- allow_
data_ boolbranching - Whether seeding branches with data is enabled for all branches.
- automatic_
migrations bool - Whether to automatically manage migrations during deploy requests. If true,
migration_table_name
andmigration_framework
must be set. - default_
branch str - The default branch for the database.
- insights_
raw_ boolqueries - The URL to see this database's branches in the web UI.
- migration_
framework str - Framework used for applying migrations.
- migration_
table_ strname - Table name to use for copying schema migration data.
- name str
- The name of this database.
- production_
branch_ boolweb_ console - Whether web console is enabled for production branches.
- region str
- The region the database lives in.
- require_
approval_ boolfor_ deploy - Whether an approval is required to deploy schema changes to this database.
- restrict_
branch_ boolregion - Whether to restrict branch creation to one region.
- cluster
Size String - The default plan size of the database's branches.
- organization String
- The organization this database belongs to.
- allow
Data BooleanBranching - Whether seeding branches with data is enabled for all branches.
- automatic
Migrations Boolean - Whether to automatically manage migrations during deploy requests. If true,
migration_table_name
andmigration_framework
must be set. - default
Branch String - The default branch for the database.
- insights
Raw BooleanQueries - The URL to see this database's branches in the web UI.
- migration
Framework String - Framework used for applying migrations.
- migration
Table StringName - Table name to use for copying schema migration data.
- name String
- The name of this database.
- production
Branch BooleanWeb Console - Whether web console is enabled for production branches.
- region String
- The region the database lives in.
- require
Approval BooleanFor Deploy - Whether an approval is required to deploy schema changes to this database.
- restrict
Branch BooleanRegion - Whether to restrict branch creation to one region.
Outputs
All input properties are implicitly available as output properties. Additionally, the Database resource produces the following output properties:
- At
Backup boolRestore Branches Limit - If the database has reached its backup restored branch limit.
- At
Development boolBranch Limit - If the database has reached its development branch limit.
- Branches
Count double - The total number of database branches.
- Branches
Url string - The URL to retrieve this database's branches via the API.
- Created
At string - When the database was created.
- Data
Import DatabaseData Import - If the database was created from an import, describes the import process.
- Default
Branch doubleRead Only Regions Count - Number of read only regions in the default branch.
- Default
Branch doubleShard Count - Number of shards in the default branch.
- Default
Branch doubleTable Count - Number of tables in the default branch schema.
- Development
Branches doubleCount - The total number of database development branches.
- Html
Url string - The total number of database development branches.
- Id string
- The provider-assigned unique ID for this managed resource.
- Issues
Count double - The total number of ongoing issues within a database.
- Multiple
Admins boolRequired For Deletion - If the database requires multiple admins for deletion.
- Plan string
- The database plan.
- Production
Branches doubleCount - The total number of database production branches.
- Ready bool
- If the database is ready to be used.
- Schema
Last stringUpdated At - When the default branch schema was last changed.
- bool
- If the database is sharded.
- State string
- State of the database.
- Updated
At string - When the database was last updated.
- Url string
- The URL to the database API endpoint.
- At
Backup boolRestore Branches Limit - If the database has reached its backup restored branch limit.
- At
Development boolBranch Limit - If the database has reached its development branch limit.
- Branches
Count float64 - The total number of database branches.
- Branches
Url string - The URL to retrieve this database's branches via the API.
- Created
At string - When the database was created.
- Data
Import DatabaseData Import - If the database was created from an import, describes the import process.
- Default
Branch float64Read Only Regions Count - Number of read only regions in the default branch.
- Default
Branch float64Shard Count - Number of shards in the default branch.
- Default
Branch float64Table Count - Number of tables in the default branch schema.
- Development
Branches float64Count - The total number of database development branches.
- Html
Url string - The total number of database development branches.
- Id string
- The provider-assigned unique ID for this managed resource.
- Issues
Count float64 - The total number of ongoing issues within a database.
- Multiple
Admins boolRequired For Deletion - If the database requires multiple admins for deletion.
- Plan string
- The database plan.
- Production
Branches float64Count - The total number of database production branches.
- Ready bool
- If the database is ready to be used.
- Schema
Last stringUpdated At - When the default branch schema was last changed.
- bool
- If the database is sharded.
- State string
- State of the database.
- Updated
At string - When the database was last updated.
- Url string
- The URL to the database API endpoint.
- at
Backup BooleanRestore Branches Limit - If the database has reached its backup restored branch limit.
- at
Development BooleanBranch Limit - If the database has reached its development branch limit.
- branches
Count Double - The total number of database branches.
- branches
Url String - The URL to retrieve this database's branches via the API.
- created
At String - When the database was created.
- data
Import DatabaseData Import - If the database was created from an import, describes the import process.
- default
Branch DoubleRead Only Regions Count - Number of read only regions in the default branch.
- default
Branch DoubleShard Count - Number of shards in the default branch.
- default
Branch DoubleTable Count - Number of tables in the default branch schema.
- development
Branches DoubleCount - The total number of database development branches.
- html
Url String - The total number of database development branches.
- id String
- The provider-assigned unique ID for this managed resource.
- issues
Count Double - The total number of ongoing issues within a database.
- multiple
Admins BooleanRequired For Deletion - If the database requires multiple admins for deletion.
- plan String
- The database plan.
- production
Branches DoubleCount - The total number of database production branches.
- ready Boolean
- If the database is ready to be used.
- schema
Last StringUpdated At - When the default branch schema was last changed.
- Boolean
- If the database is sharded.
- state String
- State of the database.
- updated
At String - When the database was last updated.
- url String
- The URL to the database API endpoint.
- at
Backup booleanRestore Branches Limit - If the database has reached its backup restored branch limit.
- at
Development booleanBranch Limit - If the database has reached its development branch limit.
- branches
Count number - The total number of database branches.
- branches
Url string - The URL to retrieve this database's branches via the API.
- created
At string - When the database was created.
- data
Import DatabaseData Import - If the database was created from an import, describes the import process.
- default
Branch numberRead Only Regions Count - Number of read only regions in the default branch.
- default
Branch numberShard Count - Number of shards in the default branch.
- default
Branch numberTable Count - Number of tables in the default branch schema.
- development
Branches numberCount - The total number of database development branches.
- html
Url string - The total number of database development branches.
- id string
- The provider-assigned unique ID for this managed resource.
- issues
Count number - The total number of ongoing issues within a database.
- multiple
Admins booleanRequired For Deletion - If the database requires multiple admins for deletion.
- plan string
- The database plan.
- production
Branches numberCount - The total number of database production branches.
- ready boolean
- If the database is ready to be used.
- schema
Last stringUpdated At - When the default branch schema was last changed.
- boolean
- If the database is sharded.
- state string
- State of the database.
- updated
At string - When the database was last updated.
- url string
- The URL to the database API endpoint.
- at_
backup_ boolrestore_ branches_ limit - If the database has reached its backup restored branch limit.
- at_
development_ boolbranch_ limit - If the database has reached its development branch limit.
- branches_
count float - The total number of database branches.
- branches_
url str - The URL to retrieve this database's branches via the API.
- created_
at str - When the database was created.
- data_
import DatabaseData Import - If the database was created from an import, describes the import process.
- default_
branch_ floatread_ only_ regions_ count - Number of read only regions in the default branch.
- default_
branch_ floatshard_ count - Number of shards in the default branch.
- default_
branch_ floattable_ count - Number of tables in the default branch schema.
- development_
branches_ floatcount - The total number of database development branches.
- html_
url str - The total number of database development branches.
- id str
- The provider-assigned unique ID for this managed resource.
- issues_
count float - The total number of ongoing issues within a database.
- multiple_
admins_ boolrequired_ for_ deletion - If the database requires multiple admins for deletion.
- plan str
- The database plan.
- production_
branches_ floatcount - The total number of database production branches.
- ready bool
- If the database is ready to be used.
- schema_
last_ strupdated_ at - When the default branch schema was last changed.
- bool
- If the database is sharded.
- state str
- State of the database.
- updated_
at str - When the database was last updated.
- url str
- The URL to the database API endpoint.
- at
Backup BooleanRestore Branches Limit - If the database has reached its backup restored branch limit.
- at
Development BooleanBranch Limit - If the database has reached its development branch limit.
- branches
Count Number - The total number of database branches.
- branches
Url String - The URL to retrieve this database's branches via the API.
- created
At String - When the database was created.
- data
Import Property Map - If the database was created from an import, describes the import process.
- default
Branch NumberRead Only Regions Count - Number of read only regions in the default branch.
- default
Branch NumberShard Count - Number of shards in the default branch.
- default
Branch NumberTable Count - Number of tables in the default branch schema.
- development
Branches NumberCount - The total number of database development branches.
- html
Url String - The total number of database development branches.
- id String
- The provider-assigned unique ID for this managed resource.
- issues
Count Number - The total number of ongoing issues within a database.
- multiple
Admins BooleanRequired For Deletion - If the database requires multiple admins for deletion.
- plan String
- The database plan.
- production
Branches NumberCount - The total number of database production branches.
- ready Boolean
- If the database is ready to be used.
- schema
Last StringUpdated At - When the default branch schema was last changed.
- Boolean
- If the database is sharded.
- state String
- State of the database.
- updated
At String - When the database was last updated.
- url String
- The URL to the database API endpoint.
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,
allow_data_branching: Optional[bool] = None,
at_backup_restore_branches_limit: Optional[bool] = None,
at_development_branch_limit: Optional[bool] = None,
automatic_migrations: Optional[bool] = None,
branches_count: Optional[float] = None,
branches_url: Optional[str] = None,
cluster_size: Optional[str] = None,
created_at: Optional[str] = None,
data_import: Optional[DatabaseDataImportArgs] = None,
default_branch: Optional[str] = None,
default_branch_read_only_regions_count: Optional[float] = None,
default_branch_shard_count: Optional[float] = None,
default_branch_table_count: Optional[float] = None,
development_branches_count: Optional[float] = None,
html_url: Optional[str] = None,
insights_raw_queries: Optional[bool] = None,
issues_count: Optional[float] = None,
migration_framework: Optional[str] = None,
migration_table_name: Optional[str] = None,
multiple_admins_required_for_deletion: Optional[bool] = None,
name: Optional[str] = None,
organization: Optional[str] = None,
plan: Optional[str] = None,
production_branch_web_console: Optional[bool] = None,
production_branches_count: Optional[float] = None,
ready: Optional[bool] = None,
region: Optional[str] = None,
require_approval_for_deploy: Optional[bool] = None,
restrict_branch_region: Optional[bool] = None,
schema_last_updated_at: Optional[str] = None,
sharded: Optional[bool] = None,
state: Optional[str] = None,
updated_at: Optional[str] = None,
url: 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)
resources: _: type: planetscale:Database 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.
- Allow
Data boolBranching - Whether seeding branches with data is enabled for all branches.
- At
Backup boolRestore Branches Limit - If the database has reached its backup restored branch limit.
- At
Development boolBranch Limit - If the database has reached its development branch limit.
- Automatic
Migrations bool - Whether to automatically manage migrations during deploy requests. If true,
migration_table_name
andmigration_framework
must be set. - Branches
Count double - The total number of database branches.
- Branches
Url string - The URL to retrieve this database's branches via the API.
- Cluster
Size string - The default plan size of the database's branches.
- Created
At string - When the database was created.
- Data
Import DatabaseData Import - If the database was created from an import, describes the import process.
- Default
Branch string - The default branch for the database.
- Default
Branch doubleRead Only Regions Count - Number of read only regions in the default branch.
- Default
Branch doubleShard Count - Number of shards in the default branch.
- Default
Branch doubleTable Count - Number of tables in the default branch schema.
- Development
Branches doubleCount - The total number of database development branches.
- Html
Url string - The total number of database development branches.
- Insights
Raw boolQueries - The URL to see this database's branches in the web UI.
- Issues
Count double - The total number of ongoing issues within a database.
- Migration
Framework string - Framework used for applying migrations.
- Migration
Table stringName - Table name to use for copying schema migration data.
- Multiple
Admins boolRequired For Deletion - If the database requires multiple admins for deletion.
- Name string
- The name of this database.
- Organization string
- The organization this database belongs to.
- Plan string
- The database plan.
- Production
Branch boolWeb Console - Whether web console is enabled for production branches.
- Production
Branches doubleCount - The total number of database production branches.
- Ready bool
- If the database is ready to be used.
- Region string
- The region the database lives in.
- Require
Approval boolFor Deploy - Whether an approval is required to deploy schema changes to this database.
- Restrict
Branch boolRegion - Whether to restrict branch creation to one region.
- Schema
Last stringUpdated At - When the default branch schema was last changed.
- Sharded bool
- If the database is sharded.
- State string
- State of the database.
- Updated
At string - When the database was last updated.
- Url string
- The URL to the database API endpoint.
- Allow
Data boolBranching - Whether seeding branches with data is enabled for all branches.
- At
Backup boolRestore Branches Limit - If the database has reached its backup restored branch limit.
- At
Development boolBranch Limit - If the database has reached its development branch limit.
- Automatic
Migrations bool - Whether to automatically manage migrations during deploy requests. If true,
migration_table_name
andmigration_framework
must be set. - Branches
Count float64 - The total number of database branches.
- Branches
Url string - The URL to retrieve this database's branches via the API.
- Cluster
Size string - The default plan size of the database's branches.
- Created
At string - When the database was created.
- Data
Import DatabaseData Import Args - If the database was created from an import, describes the import process.
- Default
Branch string - The default branch for the database.
- Default
Branch float64Read Only Regions Count - Number of read only regions in the default branch.
- Default
Branch float64Shard Count - Number of shards in the default branch.
- Default
Branch float64Table Count - Number of tables in the default branch schema.
- Development
Branches float64Count - The total number of database development branches.
- Html
Url string - The total number of database development branches.
- Insights
Raw boolQueries - The URL to see this database's branches in the web UI.
- Issues
Count float64 - The total number of ongoing issues within a database.
- Migration
Framework string - Framework used for applying migrations.
- Migration
Table stringName - Table name to use for copying schema migration data.
- Multiple
Admins boolRequired For Deletion - If the database requires multiple admins for deletion.
- Name string
- The name of this database.
- Organization string
- The organization this database belongs to.
- Plan string
- The database plan.
- Production
Branch boolWeb Console - Whether web console is enabled for production branches.
- Production
Branches float64Count - The total number of database production branches.
- Ready bool
- If the database is ready to be used.
- Region string
- The region the database lives in.
- Require
Approval boolFor Deploy - Whether an approval is required to deploy schema changes to this database.
- Restrict
Branch boolRegion - Whether to restrict branch creation to one region.
- Schema
Last stringUpdated At - When the default branch schema was last changed.
- Sharded bool
- If the database is sharded.
- State string
- State of the database.
- Updated
At string - When the database was last updated.
- Url string
- The URL to the database API endpoint.
- allow
Data BooleanBranching - Whether seeding branches with data is enabled for all branches.
- at
Backup BooleanRestore Branches Limit - If the database has reached its backup restored branch limit.
- at
Development BooleanBranch Limit - If the database has reached its development branch limit.
- automatic
Migrations Boolean - Whether to automatically manage migrations during deploy requests. If true,
migration_table_name
andmigration_framework
must be set. - branches
Count Double - The total number of database branches.
- branches
Url String - The URL to retrieve this database's branches via the API.
- cluster
Size String - The default plan size of the database's branches.
- created
At String - When the database was created.
- data
Import DatabaseData Import - If the database was created from an import, describes the import process.
- default
Branch String - The default branch for the database.
- default
Branch DoubleRead Only Regions Count - Number of read only regions in the default branch.
- default
Branch DoubleShard Count - Number of shards in the default branch.
- default
Branch DoubleTable Count - Number of tables in the default branch schema.
- development
Branches DoubleCount - The total number of database development branches.
- html
Url String - The total number of database development branches.
- insights
Raw BooleanQueries - The URL to see this database's branches in the web UI.
- issues
Count Double - The total number of ongoing issues within a database.
- migration
Framework String - Framework used for applying migrations.
- migration
Table StringName - Table name to use for copying schema migration data.
- multiple
Admins BooleanRequired For Deletion - If the database requires multiple admins for deletion.
- name String
- The name of this database.
- organization String
- The organization this database belongs to.
- plan String
- The database plan.
- production
Branch BooleanWeb Console - Whether web console is enabled for production branches.
- production
Branches DoubleCount - The total number of database production branches.
- ready Boolean
- If the database is ready to be used.
- region String
- The region the database lives in.
- require
Approval BooleanFor Deploy - Whether an approval is required to deploy schema changes to this database.
- restrict
Branch BooleanRegion - Whether to restrict branch creation to one region.
- schema
Last StringUpdated At - When the default branch schema was last changed.
- sharded Boolean
- If the database is sharded.
- state String
- State of the database.
- updated
At String - When the database was last updated.
- url String
- The URL to the database API endpoint.
- allow
Data booleanBranching - Whether seeding branches with data is enabled for all branches.
- at
Backup booleanRestore Branches Limit - If the database has reached its backup restored branch limit.
- at
Development booleanBranch Limit - If the database has reached its development branch limit.
- automatic
Migrations boolean - Whether to automatically manage migrations during deploy requests. If true,
migration_table_name
andmigration_framework
must be set. - branches
Count number - The total number of database branches.
- branches
Url string - The URL to retrieve this database's branches via the API.
- cluster
Size string - The default plan size of the database's branches.
- created
At string - When the database was created.
- data
Import DatabaseData Import - If the database was created from an import, describes the import process.
- default
Branch string - The default branch for the database.
- default
Branch numberRead Only Regions Count - Number of read only regions in the default branch.
- default
Branch numberShard Count - Number of shards in the default branch.
- default
Branch numberTable Count - Number of tables in the default branch schema.
- development
Branches numberCount - The total number of database development branches.
- html
Url string - The total number of database development branches.
- insights
Raw booleanQueries - The URL to see this database's branches in the web UI.
- issues
Count number - The total number of ongoing issues within a database.
- migration
Framework string - Framework used for applying migrations.
- migration
Table stringName - Table name to use for copying schema migration data.
- multiple
Admins booleanRequired For Deletion - If the database requires multiple admins for deletion.
- name string
- The name of this database.
- organization string
- The organization this database belongs to.
- plan string
- The database plan.
- production
Branch booleanWeb Console - Whether web console is enabled for production branches.
- production
Branches numberCount - The total number of database production branches.
- ready boolean
- If the database is ready to be used.
- region string
- The region the database lives in.
- require
Approval booleanFor Deploy - Whether an approval is required to deploy schema changes to this database.
- restrict
Branch booleanRegion - Whether to restrict branch creation to one region.
- schema
Last stringUpdated At - When the default branch schema was last changed.
- sharded boolean
- If the database is sharded.
- state string
- State of the database.
- updated
At string - When the database was last updated.
- url string
- The URL to the database API endpoint.
- allow_
data_ boolbranching - Whether seeding branches with data is enabled for all branches.
- at_
backup_ boolrestore_ branches_ limit - If the database has reached its backup restored branch limit.
- at_
development_ boolbranch_ limit - If the database has reached its development branch limit.
- automatic_
migrations bool - Whether to automatically manage migrations during deploy requests. If true,
migration_table_name
andmigration_framework
must be set. - branches_
count float - The total number of database branches.
- branches_
url str - The URL to retrieve this database's branches via the API.
- cluster_
size str - The default plan size of the database's branches.
- created_
at str - When the database was created.
- data_
import DatabaseData Import Args - If the database was created from an import, describes the import process.
- default_
branch str - The default branch for the database.
- default_
branch_ floatread_ only_ regions_ count - Number of read only regions in the default branch.
- default_
branch_ floatshard_ count - Number of shards in the default branch.
- default_
branch_ floattable_ count - Number of tables in the default branch schema.
- development_
branches_ floatcount - The total number of database development branches.
- html_
url str - The total number of database development branches.
- insights_
raw_ boolqueries - The URL to see this database's branches in the web UI.
- issues_
count float - The total number of ongoing issues within a database.
- migration_
framework str - Framework used for applying migrations.
- migration_
table_ strname - Table name to use for copying schema migration data.
- multiple_
admins_ boolrequired_ for_ deletion - If the database requires multiple admins for deletion.
- name str
- The name of this database.
- organization str
- The organization this database belongs to.
- plan str
- The database plan.
- production_
branch_ boolweb_ console - Whether web console is enabled for production branches.
- production_
branches_ floatcount - The total number of database production branches.
- ready bool
- If the database is ready to be used.
- region str
- The region the database lives in.
- require_
approval_ boolfor_ deploy - Whether an approval is required to deploy schema changes to this database.
- restrict_
branch_ boolregion - Whether to restrict branch creation to one region.
- schema_
last_ strupdated_ at - When the default branch schema was last changed.
- sharded bool
- If the database is sharded.
- state str
- State of the database.
- updated_
at str - When the database was last updated.
- url str
- The URL to the database API endpoint.
- allow
Data BooleanBranching - Whether seeding branches with data is enabled for all branches.
- at
Backup BooleanRestore Branches Limit - If the database has reached its backup restored branch limit.
- at
Development BooleanBranch Limit - If the database has reached its development branch limit.
- automatic
Migrations Boolean - Whether to automatically manage migrations during deploy requests. If true,
migration_table_name
andmigration_framework
must be set. - branches
Count Number - The total number of database branches.
- branches
Url String - The URL to retrieve this database's branches via the API.
- cluster
Size String - The default plan size of the database's branches.
- created
At String - When the database was created.
- data
Import Property Map - If the database was created from an import, describes the import process.
- default
Branch String - The default branch for the database.
- default
Branch NumberRead Only Regions Count - Number of read only regions in the default branch.
- default
Branch NumberShard Count - Number of shards in the default branch.
- default
Branch NumberTable Count - Number of tables in the default branch schema.
- development
Branches NumberCount - The total number of database development branches.
- html
Url String - The total number of database development branches.
- insights
Raw BooleanQueries - The URL to see this database's branches in the web UI.
- issues
Count Number - The total number of ongoing issues within a database.
- migration
Framework String - Framework used for applying migrations.
- migration
Table StringName - Table name to use for copying schema migration data.
- multiple
Admins BooleanRequired For Deletion - If the database requires multiple admins for deletion.
- name String
- The name of this database.
- organization String
- The organization this database belongs to.
- plan String
- The database plan.
- production
Branch BooleanWeb Console - Whether web console is enabled for production branches.
- production
Branches NumberCount - The total number of database production branches.
- ready Boolean
- If the database is ready to be used.
- region String
- The region the database lives in.
- require
Approval BooleanFor Deploy - Whether an approval is required to deploy schema changes to this database.
- restrict
Branch BooleanRegion - Whether to restrict branch creation to one region.
- schema
Last StringUpdated At - When the default branch schema was last changed.
- sharded Boolean
- If the database is sharded.
- state String
- State of the database.
- updated
At String - When the database was last updated.
- url String
- The URL to the database API endpoint.
Supporting Types
DatabaseDataImport, DatabaseDataImportArgs
- Data
Source DatabaseData Import Data Source - Connection information for the source of the data for the import.
- Finished
At string - When the import finished.
- Import
Check stringErrors - Errors encountered while preparing the import.
- Started
At string - When the import started.
- State string
- The state of the import, one of: pending, queued, in_progress, complete, cancelled, error.
- Data
Source DatabaseData Import Data Source - Connection information for the source of the data for the import.
- Finished
At string - When the import finished.
- Import
Check stringErrors - Errors encountered while preparing the import.
- Started
At string - When the import started.
- State string
- The state of the import, one of: pending, queued, in_progress, complete, cancelled, error.
- data
Source DatabaseData Import Data Source - Connection information for the source of the data for the import.
- finished
At String - When the import finished.
- import
Check StringErrors - Errors encountered while preparing the import.
- started
At String - When the import started.
- state String
- The state of the import, one of: pending, queued, in_progress, complete, cancelled, error.
- data
Source DatabaseData Import Data Source - Connection information for the source of the data for the import.
- finished
At string - When the import finished.
- import
Check stringErrors - Errors encountered while preparing the import.
- started
At string - When the import started.
- state string
- The state of the import, one of: pending, queued, in_progress, complete, cancelled, error.
- data_
source DatabaseData Import Data Source - Connection information for the source of the data for the import.
- finished_
at str - When the import finished.
- import_
check_ strerrors - Errors encountered while preparing the import.
- started_
at str - When the import started.
- state str
- The state of the import, one of: pending, queued, in_progress, complete, cancelled, error.
- data
Source Property Map - Connection information for the source of the data for the import.
- finished
At String - When the import finished.
- import
Check StringErrors - Errors encountered while preparing the import.
- started
At String - When the import started.
- state String
- The state of the import, one of: pending, queued, in_progress, complete, cancelled, error.
DatabaseDataImportDataSource, DatabaseDataImportDataSourceArgs
Import
Databases can be imported using “org,database” as the identifier.
$ pulumi import planetscale:index/database:Database example "org,database"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- planetscale planetscale/terraform-provider-planetscale
- License
- Notes
- This Pulumi package is based on the
planetscale
Terraform Provider.