planetscale.Branch
Explore with Pulumi AI
A PlanetScale branch.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as planetscale from "@pulumi/planetscale";
const example = new planetscale.Branch("example", {
database: "example_db",
organization: "example",
parentBranch: "main",
});
import pulumi
import pulumi_planetscale as planetscale
example = planetscale.Branch("example",
database="example_db",
organization="example",
parent_branch="main")
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.NewBranch(ctx, "example", &planetscale.BranchArgs{
Database: pulumi.String("example_db"),
Organization: pulumi.String("example"),
ParentBranch: pulumi.String("main"),
})
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.Branch("example", new()
{
Database = "example_db",
Organization = "example",
ParentBranch = "main",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.planetscale.Branch;
import com.pulumi.planetscale.BranchArgs;
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 Branch("example", BranchArgs.builder()
.database("example_db")
.organization("example")
.parentBranch("main")
.build());
}
}
resources:
example:
type: planetscale:Branch
properties:
database: example_db
organization: example
parentBranch: main
Create Branch Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Branch(name: string, args: BranchArgs, opts?: CustomResourceOptions);
@overload
def Branch(resource_name: str,
args: BranchArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Branch(resource_name: str,
opts: Optional[ResourceOptions] = None,
database: Optional[str] = None,
organization: Optional[str] = None,
parent_branch: Optional[str] = None,
name: Optional[str] = None,
production: Optional[bool] = None)
func NewBranch(ctx *Context, name string, args BranchArgs, opts ...ResourceOption) (*Branch, error)
public Branch(string name, BranchArgs args, CustomResourceOptions? opts = null)
public Branch(String name, BranchArgs args)
public Branch(String name, BranchArgs args, CustomResourceOptions options)
type: planetscale:Branch
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 BranchArgs
- 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 BranchArgs
- 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 BranchArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BranchArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BranchArgs
- 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 branchResource = new Planetscale.Branch("branchResource", new()
{
Database = "string",
Organization = "string",
ParentBranch = "string",
Name = "string",
Production = false,
});
example, err := planetscale.NewBranch(ctx, "branchResource", &planetscale.BranchArgs{
Database: pulumi.String("string"),
Organization: pulumi.String("string"),
ParentBranch: pulumi.String("string"),
Name: pulumi.String("string"),
Production: pulumi.Bool(false),
})
var branchResource = new Branch("branchResource", BranchArgs.builder()
.database("string")
.organization("string")
.parentBranch("string")
.name("string")
.production(false)
.build());
branch_resource = planetscale.Branch("branchResource",
database="string",
organization="string",
parent_branch="string",
name="string",
production=False)
const branchResource = new planetscale.Branch("branchResource", {
database: "string",
organization: "string",
parentBranch: "string",
name: "string",
production: false,
});
type: planetscale:Branch
properties:
database: string
name: string
organization: string
parentBranch: string
production: false
Branch 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 Branch resource accepts the following input properties:
- Database string
- The database this branch belongs to.
- Organization string
- The organization this branch belongs to.
- Parent
Branch string - The name of the parent branch from which the branch was created.
- Name string
- The name of the branch.
- Production bool
- Whether or not the branch is a production branch.
- Database string
- The database this branch belongs to.
- Organization string
- The organization this branch belongs to.
- Parent
Branch string - The name of the parent branch from which the branch was created.
- Name string
- The name of the branch.
- Production bool
- Whether or not the branch is a production branch.
- database String
- The database this branch belongs to.
- organization String
- The organization this branch belongs to.
- parent
Branch String - The name of the parent branch from which the branch was created.
- name String
- The name of the branch.
- production Boolean
- Whether or not the branch is a production branch.
- database string
- The database this branch belongs to.
- organization string
- The organization this branch belongs to.
- parent
Branch string - The name of the parent branch from which the branch was created.
- name string
- The name of the branch.
- production boolean
- Whether or not the branch is a production branch.
- database str
- The database this branch belongs to.
- organization str
- The organization this branch belongs to.
- parent_
branch str - The name of the parent branch from which the branch was created.
- name str
- The name of the branch.
- production bool
- Whether or not the branch is a production branch.
- database String
- The database this branch belongs to.
- organization String
- The organization this branch belongs to.
- parent
Branch String - The name of the parent branch from which the branch was created.
- name String
- The name of the branch.
- production Boolean
- Whether or not the branch is a production branch.
Outputs
All input properties are implicitly available as output properties. Additionally, the Branch resource produces the following output properties:
- Actor
Branch
Actor - The actor who created this branch.
- Cluster
Rate stringName - The SKU representing the branch's cluster size.
- Created
At string - When the branch was created.
- Html
Url string - Planetscale app URL for the branch.
- Id string
- The provider-assigned unique ID for this managed resource.
- Mysql
Address string - The MySQL address for the branch.
- Mysql
Edge stringAddress - The address of the MySQL provider for the branch.
- Ready bool
- Whether or not the branch is ready to serve queries.
- Region
Branch
Region - The region in which this branch lives.
- Restore
Checklist stringCompleted At - When a user last marked a backup restore checklist as completed.
- Restored
From BranchBranch Restored From Branch - todo
- Schema
Last stringUpdated At - When the schema for the branch was last updated.
- double
- The number of shards in the branch.
- bool
- Whether or not the branch is sharded.
- Updated
At string - When the branch was last updated.
- Actor
Branch
Actor - The actor who created this branch.
- Cluster
Rate stringName - The SKU representing the branch's cluster size.
- Created
At string - When the branch was created.
- Html
Url string - Planetscale app URL for the branch.
- Id string
- The provider-assigned unique ID for this managed resource.
- Mysql
Address string - The MySQL address for the branch.
- Mysql
Edge stringAddress - The address of the MySQL provider for the branch.
- Ready bool
- Whether or not the branch is ready to serve queries.
- Region
Branch
Region - The region in which this branch lives.
- Restore
Checklist stringCompleted At - When a user last marked a backup restore checklist as completed.
- Restored
From BranchBranch Restored From Branch - todo
- Schema
Last stringUpdated At - When the schema for the branch was last updated.
- float64
- The number of shards in the branch.
- bool
- Whether or not the branch is sharded.
- Updated
At string - When the branch was last updated.
- actor
Branch
Actor - The actor who created this branch.
- cluster
Rate StringName - The SKU representing the branch's cluster size.
- created
At String - When the branch was created.
- html
Url String - Planetscale app URL for the branch.
- id String
- The provider-assigned unique ID for this managed resource.
- mysql
Address String - The MySQL address for the branch.
- mysql
Edge StringAddress - The address of the MySQL provider for the branch.
- ready Boolean
- Whether or not the branch is ready to serve queries.
- region
Branch
Region - The region in which this branch lives.
- restore
Checklist StringCompleted At - When a user last marked a backup restore checklist as completed.
- restored
From BranchBranch Restored From Branch - todo
- schema
Last StringUpdated At - When the schema for the branch was last updated.
- Double
- The number of shards in the branch.
- Boolean
- Whether or not the branch is sharded.
- updated
At String - When the branch was last updated.
- actor
Branch
Actor - The actor who created this branch.
- cluster
Rate stringName - The SKU representing the branch's cluster size.
- created
At string - When the branch was created.
- html
Url string - Planetscale app URL for the branch.
- id string
- The provider-assigned unique ID for this managed resource.
- mysql
Address string - The MySQL address for the branch.
- mysql
Edge stringAddress - The address of the MySQL provider for the branch.
- ready boolean
- Whether or not the branch is ready to serve queries.
- region
Branch
Region - The region in which this branch lives.
- restore
Checklist stringCompleted At - When a user last marked a backup restore checklist as completed.
- restored
From BranchBranch Restored From Branch - todo
- schema
Last stringUpdated At - When the schema for the branch was last updated.
- number
- The number of shards in the branch.
- boolean
- Whether or not the branch is sharded.
- updated
At string - When the branch was last updated.
- actor
Branch
Actor - The actor who created this branch.
- cluster_
rate_ strname - The SKU representing the branch's cluster size.
- created_
at str - When the branch was created.
- html_
url str - Planetscale app URL for the branch.
- id str
- The provider-assigned unique ID for this managed resource.
- mysql_
address str - The MySQL address for the branch.
- mysql_
edge_ straddress - The address of the MySQL provider for the branch.
- ready bool
- Whether or not the branch is ready to serve queries.
- region
Branch
Region - The region in which this branch lives.
- restore_
checklist_ strcompleted_ at - When a user last marked a backup restore checklist as completed.
- restored_
from_ Branchbranch Restored From Branch - todo
- schema_
last_ strupdated_ at - When the schema for the branch was last updated.
- float
- The number of shards in the branch.
- bool
- Whether or not the branch is sharded.
- updated_
at str - When the branch was last updated.
- actor Property Map
- The actor who created this branch.
- cluster
Rate StringName - The SKU representing the branch's cluster size.
- created
At String - When the branch was created.
- html
Url String - Planetscale app URL for the branch.
- id String
- The provider-assigned unique ID for this managed resource.
- mysql
Address String - The MySQL address for the branch.
- mysql
Edge StringAddress - The address of the MySQL provider for the branch.
- ready Boolean
- Whether or not the branch is ready to serve queries.
- region Property Map
- The region in which this branch lives.
- restore
Checklist StringCompleted At - When a user last marked a backup restore checklist as completed.
- restored
From Property MapBranch - todo
- schema
Last StringUpdated At - When the schema for the branch was last updated.
- Number
- The number of shards in the branch.
- Boolean
- Whether or not the branch is sharded.
- updated
At String - When the branch was last updated.
Look up Existing Branch Resource
Get an existing Branch 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?: BranchState, opts?: CustomResourceOptions): Branch
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
actor: Optional[BranchActorArgs] = None,
cluster_rate_name: Optional[str] = None,
created_at: Optional[str] = None,
database: Optional[str] = None,
html_url: Optional[str] = None,
mysql_address: Optional[str] = None,
mysql_edge_address: Optional[str] = None,
name: Optional[str] = None,
organization: Optional[str] = None,
parent_branch: Optional[str] = None,
production: Optional[bool] = None,
ready: Optional[bool] = None,
region: Optional[BranchRegionArgs] = None,
restore_checklist_completed_at: Optional[str] = None,
restored_from_branch: Optional[BranchRestoredFromBranchArgs] = None,
schema_last_updated_at: Optional[str] = None,
shard_count: Optional[float] = None,
sharded: Optional[bool] = None,
updated_at: Optional[str] = None) -> Branch
func GetBranch(ctx *Context, name string, id IDInput, state *BranchState, opts ...ResourceOption) (*Branch, error)
public static Branch Get(string name, Input<string> id, BranchState? state, CustomResourceOptions? opts = null)
public static Branch get(String name, Output<String> id, BranchState state, CustomResourceOptions options)
resources: _: type: planetscale:Branch 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.
- Actor
Branch
Actor - The actor who created this branch.
- Cluster
Rate stringName - The SKU representing the branch's cluster size.
- Created
At string - When the branch was created.
- Database string
- The database this branch belongs to.
- Html
Url string - Planetscale app URL for the branch.
- Mysql
Address string - The MySQL address for the branch.
- Mysql
Edge stringAddress - The address of the MySQL provider for the branch.
- Name string
- The name of the branch.
- Organization string
- The organization this branch belongs to.
- Parent
Branch string - The name of the parent branch from which the branch was created.
- Production bool
- Whether or not the branch is a production branch.
- Ready bool
- Whether or not the branch is ready to serve queries.
- Region
Branch
Region - The region in which this branch lives.
- Restore
Checklist stringCompleted At - When a user last marked a backup restore checklist as completed.
- Restored
From BranchBranch Restored From Branch - todo
- Schema
Last stringUpdated At - When the schema for the branch was last updated.
- Shard
Count double - The number of shards in the branch.
- Sharded bool
- Whether or not the branch is sharded.
- Updated
At string - When the branch was last updated.
- Actor
Branch
Actor Args - The actor who created this branch.
- Cluster
Rate stringName - The SKU representing the branch's cluster size.
- Created
At string - When the branch was created.
- Database string
- The database this branch belongs to.
- Html
Url string - Planetscale app URL for the branch.
- Mysql
Address string - The MySQL address for the branch.
- Mysql
Edge stringAddress - The address of the MySQL provider for the branch.
- Name string
- The name of the branch.
- Organization string
- The organization this branch belongs to.
- Parent
Branch string - The name of the parent branch from which the branch was created.
- Production bool
- Whether or not the branch is a production branch.
- Ready bool
- Whether or not the branch is ready to serve queries.
- Region
Branch
Region Args - The region in which this branch lives.
- Restore
Checklist stringCompleted At - When a user last marked a backup restore checklist as completed.
- Restored
From BranchBranch Restored From Branch Args - todo
- Schema
Last stringUpdated At - When the schema for the branch was last updated.
- Shard
Count float64 - The number of shards in the branch.
- Sharded bool
- Whether or not the branch is sharded.
- Updated
At string - When the branch was last updated.
- actor
Branch
Actor - The actor who created this branch.
- cluster
Rate StringName - The SKU representing the branch's cluster size.
- created
At String - When the branch was created.
- database String
- The database this branch belongs to.
- html
Url String - Planetscale app URL for the branch.
- mysql
Address String - The MySQL address for the branch.
- mysql
Edge StringAddress - The address of the MySQL provider for the branch.
- name String
- The name of the branch.
- organization String
- The organization this branch belongs to.
- parent
Branch String - The name of the parent branch from which the branch was created.
- production Boolean
- Whether or not the branch is a production branch.
- ready Boolean
- Whether or not the branch is ready to serve queries.
- region
Branch
Region - The region in which this branch lives.
- restore
Checklist StringCompleted At - When a user last marked a backup restore checklist as completed.
- restored
From BranchBranch Restored From Branch - todo
- schema
Last StringUpdated At - When the schema for the branch was last updated.
- shard
Count Double - The number of shards in the branch.
- sharded Boolean
- Whether or not the branch is sharded.
- updated
At String - When the branch was last updated.
- actor
Branch
Actor - The actor who created this branch.
- cluster
Rate stringName - The SKU representing the branch's cluster size.
- created
At string - When the branch was created.
- database string
- The database this branch belongs to.
- html
Url string - Planetscale app URL for the branch.
- mysql
Address string - The MySQL address for the branch.
- mysql
Edge stringAddress - The address of the MySQL provider for the branch.
- name string
- The name of the branch.
- organization string
- The organization this branch belongs to.
- parent
Branch string - The name of the parent branch from which the branch was created.
- production boolean
- Whether or not the branch is a production branch.
- ready boolean
- Whether or not the branch is ready to serve queries.
- region
Branch
Region - The region in which this branch lives.
- restore
Checklist stringCompleted At - When a user last marked a backup restore checklist as completed.
- restored
From BranchBranch Restored From Branch - todo
- schema
Last stringUpdated At - When the schema for the branch was last updated.
- shard
Count number - The number of shards in the branch.
- sharded boolean
- Whether or not the branch is sharded.
- updated
At string - When the branch was last updated.
- actor
Branch
Actor Args - The actor who created this branch.
- cluster_
rate_ strname - The SKU representing the branch's cluster size.
- created_
at str - When the branch was created.
- database str
- The database this branch belongs to.
- html_
url str - Planetscale app URL for the branch.
- mysql_
address str - The MySQL address for the branch.
- mysql_
edge_ straddress - The address of the MySQL provider for the branch.
- name str
- The name of the branch.
- organization str
- The organization this branch belongs to.
- parent_
branch str - The name of the parent branch from which the branch was created.
- production bool
- Whether or not the branch is a production branch.
- ready bool
- Whether or not the branch is ready to serve queries.
- region
Branch
Region Args - The region in which this branch lives.
- restore_
checklist_ strcompleted_ at - When a user last marked a backup restore checklist as completed.
- restored_
from_ Branchbranch Restored From Branch Args - todo
- schema_
last_ strupdated_ at - When the schema for the branch was last updated.
- shard_
count float - The number of shards in the branch.
- sharded bool
- Whether or not the branch is sharded.
- updated_
at str - When the branch was last updated.
- actor Property Map
- The actor who created this branch.
- cluster
Rate StringName - The SKU representing the branch's cluster size.
- created
At String - When the branch was created.
- database String
- The database this branch belongs to.
- html
Url String - Planetscale app URL for the branch.
- mysql
Address String - The MySQL address for the branch.
- mysql
Edge StringAddress - The address of the MySQL provider for the branch.
- name String
- The name of the branch.
- organization String
- The organization this branch belongs to.
- parent
Branch String - The name of the parent branch from which the branch was created.
- production Boolean
- Whether or not the branch is a production branch.
- ready Boolean
- Whether or not the branch is ready to serve queries.
- region Property Map
- The region in which this branch lives.
- restore
Checklist StringCompleted At - When a user last marked a backup restore checklist as completed.
- restored
From Property MapBranch - todo
- schema
Last StringUpdated At - When the schema for the branch was last updated.
- shard
Count Number - The number of shards in the branch.
- sharded Boolean
- Whether or not the branch is sharded.
- updated
At String - When the branch was last updated.
Supporting Types
BranchActor, BranchActorArgs
- Avatar
Url string - The URL of the actor's avatar
- Display
Name string - The name of the actor
- Id string
- The ID of the actor
- Avatar
Url string - The URL of the actor's avatar
- Display
Name string - The name of the actor
- Id string
- The ID of the actor
- avatar
Url String - The URL of the actor's avatar
- display
Name String - The name of the actor
- id String
- The ID of the actor
- avatar
Url string - The URL of the actor's avatar
- display
Name string - The name of the actor
- id string
- The ID of the actor
- avatar_
url str - The URL of the actor's avatar
- display_
name str - The name of the actor
- id str
- The ID of the actor
- avatar
Url String - The URL of the actor's avatar
- display
Name String - The name of the actor
- id String
- The ID of the actor
BranchRegion, BranchRegionArgs
- Display
Name string - Name of the region.
- Enabled bool
- Whether or not the region is currently active.
- Id string
- The ID of the region.
- Location string
- Location of the region.
- Provider string
- Provider for the region (ex. AWS).
- Public
Ip List<string>Addresses - Public IP addresses for the region.
- Slug string
- The slug of the region.
- Display
Name string - Name of the region.
- Enabled bool
- Whether or not the region is currently active.
- Id string
- The ID of the region.
- Location string
- Location of the region.
- Provider string
- Provider for the region (ex. AWS).
- Public
Ip []stringAddresses - Public IP addresses for the region.
- Slug string
- The slug of the region.
- display
Name String - Name of the region.
- enabled Boolean
- Whether or not the region is currently active.
- id String
- The ID of the region.
- location String
- Location of the region.
- provider String
- Provider for the region (ex. AWS).
- public
Ip List<String>Addresses - Public IP addresses for the region.
- slug String
- The slug of the region.
- display
Name string - Name of the region.
- enabled boolean
- Whether or not the region is currently active.
- id string
- The ID of the region.
- location string
- Location of the region.
- provider string
- Provider for the region (ex. AWS).
- public
Ip string[]Addresses - Public IP addresses for the region.
- slug string
- The slug of the region.
- display_
name str - Name of the region.
- enabled bool
- Whether or not the region is currently active.
- id str
- The ID of the region.
- location str
- Location of the region.
- provider str
- Provider for the region (ex. AWS).
- public_
ip_ Sequence[str]addresses - Public IP addresses for the region.
- slug str
- The slug of the region.
- display
Name String - Name of the region.
- enabled Boolean
- Whether or not the region is currently active.
- id String
- The ID of the region.
- location String
- Location of the region.
- provider String
- Provider for the region (ex. AWS).
- public
Ip List<String>Addresses - Public IP addresses for the region.
- slug String
- The slug of the region.
BranchRestoredFromBranch, BranchRestoredFromBranchArgs
- created_
at str - When the resource was created.
- deleted_
at str - When the resource was deleted, if deleted.
- id str
- The ID for the resource.
- name str
- The name for the resource.
- updated_
at str - When the resource was last updated.
Import
Branches can be imported using “org,database,branch” as the identifier.
$ pulumi import planetscale:index/branch:Branch example "org,database,branch"
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.