import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getPostgresBranch(args: GetPostgresBranchArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPostgresBranch. */ export interface GetPostgresBranchArgs { database: string; id: string; organization: string; } /** * A collection of values returned by getPostgresBranch. */ export interface GetPostgresBranchResult { readonly actor: outputs.GetPostgresBranchActor; readonly clusterSize: string; readonly database: string; readonly htmlUrl: string; readonly id: string; readonly name: string; readonly organization: string; readonly parentBranch: string; readonly ready: boolean; readonly regionData: outputs.GetPostgresBranchRegionData; readonly replicas: number; readonly state: string; readonly url: string; } export declare function getPostgresBranchOutput(args: GetPostgresBranchOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPostgresBranch. */ export interface GetPostgresBranchOutputArgs { database: pulumi.Input; id: pulumi.Input; organization: pulumi.Input; }