1. Packages
  2. Planetscale Provider
  3. API Docs
  4. getBranchSafeMigrations
planetscale 0.4.1 published on Tuesday, Mar 11, 2025 by planetscale

planetscale.getBranchSafeMigrations

Explore with Pulumi AI

planetscale logo
planetscale 0.4.1 published on Tuesday, Mar 11, 2025 by planetscale

    Safe migration state on a PlanetScale branch.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as planetscale from "@pulumi/planetscale";
    
    const example = planetscale.getBranchSafeMigrations({
        organization: "example.com",
        database: "example_db",
        branch: "main",
    });
    export const safeMigrations = example;
    
    import pulumi
    import pulumi_planetscale as planetscale
    
    example = planetscale.get_branch_safe_migrations(organization="example.com",
        database="example_db",
        branch="main")
    pulumi.export("safeMigrations", 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 {
    		example, err := planetscale.LookupBranchSafeMigrations(ctx, &planetscale.LookupBranchSafeMigrationsArgs{
    			Organization: "example.com",
    			Database:     "example_db",
    			Branch:       "main",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("safeMigrations", example)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Planetscale = Pulumi.Planetscale;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Planetscale.GetBranchSafeMigrations.Invoke(new()
        {
            Organization = "example.com",
            Database = "example_db",
            Branch = "main",
        });
    
        return new Dictionary<string, object?>
        {
            ["safeMigrations"] = example,
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.planetscale.PlanetscaleFunctions;
    import com.pulumi.planetscale.inputs.GetBranchSafeMigrationsArgs;
    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) {
            final var example = PlanetscaleFunctions.getBranchSafeMigrations(GetBranchSafeMigrationsArgs.builder()
                .organization("example.com")
                .database("example_db")
                .branch("main")
                .build());
    
            ctx.export("safeMigrations", example.applyValue(getBranchSafeMigrationsResult -> getBranchSafeMigrationsResult));
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: planetscale:getBranchSafeMigrations
          arguments:
            organization: example.com
            database: example_db
            branch: main
    outputs:
      safeMigrations: ${example}
    

    Using getBranchSafeMigrations

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getBranchSafeMigrations(args: GetBranchSafeMigrationsArgs, opts?: InvokeOptions): Promise<GetBranchSafeMigrationsResult>
    function getBranchSafeMigrationsOutput(args: GetBranchSafeMigrationsOutputArgs, opts?: InvokeOptions): Output<GetBranchSafeMigrationsResult>
    def get_branch_safe_migrations(branch: Optional[str] = None,
                                   database: Optional[str] = None,
                                   organization: Optional[str] = None,
                                   opts: Optional[InvokeOptions] = None) -> GetBranchSafeMigrationsResult
    def get_branch_safe_migrations_output(branch: Optional[pulumi.Input[str]] = None,
                                   database: Optional[pulumi.Input[str]] = None,
                                   organization: Optional[pulumi.Input[str]] = None,
                                   opts: Optional[InvokeOptions] = None) -> Output[GetBranchSafeMigrationsResult]
    func LookupBranchSafeMigrations(ctx *Context, args *LookupBranchSafeMigrationsArgs, opts ...InvokeOption) (*LookupBranchSafeMigrationsResult, error)
    func LookupBranchSafeMigrationsOutput(ctx *Context, args *LookupBranchSafeMigrationsOutputArgs, opts ...InvokeOption) LookupBranchSafeMigrationsResultOutput

    > Note: This function is named LookupBranchSafeMigrations in the Go SDK.

    public static class GetBranchSafeMigrations 
    {
        public static Task<GetBranchSafeMigrationsResult> InvokeAsync(GetBranchSafeMigrationsArgs args, InvokeOptions? opts = null)
        public static Output<GetBranchSafeMigrationsResult> Invoke(GetBranchSafeMigrationsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetBranchSafeMigrationsResult> getBranchSafeMigrations(GetBranchSafeMigrationsArgs args, InvokeOptions options)
    public static Output<GetBranchSafeMigrationsResult> getBranchSafeMigrations(GetBranchSafeMigrationsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: planetscale:index/getBranchSafeMigrations:getBranchSafeMigrations
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Branch string
    The name of the branch this safe migrations configuration belongs to.
    Database string
    The database this branch belongs to.
    Organization string
    The organization this branch belongs to.
    Branch string
    The name of the branch this safe migrations configuration belongs to.
    Database string
    The database this branch belongs to.
    Organization string
    The organization this branch belongs to.
    branch String
    The name of the branch this safe migrations configuration belongs to.
    database String
    The database this branch belongs to.
    organization String
    The organization this branch belongs to.
    branch string
    The name of the branch this safe migrations configuration belongs to.
    database string
    The database this branch belongs to.
    organization string
    The organization this branch belongs to.
    branch str
    The name of the branch this safe migrations configuration belongs to.
    database str
    The database this branch belongs to.
    organization str
    The organization this branch belongs to.
    branch String
    The name of the branch this safe migrations configuration belongs to.
    database String
    The database this branch belongs to.
    organization String
    The organization this branch belongs to.

    getBranchSafeMigrations Result

    The following output properties are available:

    Branch string
    The name of the branch this safe migrations configuration belongs to.
    Database string
    The database this branch belongs to.
    Enabled bool
    Whether safe migrations are enabled for this branch.
    Id string
    The provider-assigned unique ID for this managed resource.
    Organization string
    The organization this branch belongs to.
    Branch string
    The name of the branch this safe migrations configuration belongs to.
    Database string
    The database this branch belongs to.
    Enabled bool
    Whether safe migrations are enabled for this branch.
    Id string
    The provider-assigned unique ID for this managed resource.
    Organization string
    The organization this branch belongs to.
    branch String
    The name of the branch this safe migrations configuration belongs to.
    database String
    The database this branch belongs to.
    enabled Boolean
    Whether safe migrations are enabled for this branch.
    id String
    The provider-assigned unique ID for this managed resource.
    organization String
    The organization this branch belongs to.
    branch string
    The name of the branch this safe migrations configuration belongs to.
    database string
    The database this branch belongs to.
    enabled boolean
    Whether safe migrations are enabled for this branch.
    id string
    The provider-assigned unique ID for this managed resource.
    organization string
    The organization this branch belongs to.
    branch str
    The name of the branch this safe migrations configuration belongs to.
    database str
    The database this branch belongs to.
    enabled bool
    Whether safe migrations are enabled for this branch.
    id str
    The provider-assigned unique ID for this managed resource.
    organization str
    The organization this branch belongs to.
    branch String
    The name of the branch this safe migrations configuration belongs to.
    database String
    The database this branch belongs to.
    enabled Boolean
    Whether safe migrations are enabled for this branch.
    id String
    The provider-assigned unique ID for this managed resource.
    organization String
    The organization this branch belongs to.

    Package Details

    Repository
    planetscale planetscale/terraform-provider-planetscale
    License
    Notes
    This Pulumi package is based on the planetscale Terraform Provider.
    planetscale logo
    planetscale 0.4.1 published on Tuesday, Mar 11, 2025 by planetscale