UNPKG

@lbrlabs/pulumi-cockroach

Version:

A Pulumi package to create and managed cockroach db resources in Pulumi programs.

41 lines (40 loc) 1.05 kB
import * as pulumi from "@pulumi/pulumi"; /** * Information about an individual user. */ export declare function getPersonUser(args: GetPersonUserArgs, opts?: pulumi.InvokeOptions): Promise<GetPersonUserResult>; /** * A collection of arguments for invoking getPersonUser. */ export interface GetPersonUserArgs { /** * Email address used to find the User ID. */ email: string; } /** * A collection of values returned by getPersonUser. */ export interface GetPersonUserResult { /** * Email address used to find the User ID. */ readonly email: string; /** * User ID. */ readonly id: string; } /** * Information about an individual user. */ export declare function getPersonUserOutput(args: GetPersonUserOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetPersonUserResult>; /** * A collection of arguments for invoking getPersonUser. */ export interface GetPersonUserOutputArgs { /** * Email address used to find the User ID. */ email: pulumi.Input<string>; }