import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getPostgresBranchRoles(args: GetPostgresBranchRolesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPostgresBranchRoles. */ export interface GetPostgresBranchRolesArgs { branch: string; database: string; organization: string; } /** * A collection of values returned by getPostgresBranchRoles. */ export interface GetPostgresBranchRolesResult { readonly branch: string; readonly database: string; readonly datas: outputs.GetPostgresBranchRolesData[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly organization: string; } export declare function getPostgresBranchRolesOutput(args: GetPostgresBranchRolesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPostgresBranchRoles. */ export interface GetPostgresBranchRolesOutputArgs { branch: pulumi.Input; database: pulumi.Input; organization: pulumi.Input; }