import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleAccountMember = cloudflare.getAccountMember({ * accountId: "eb78d65290b24279ba6f44721b3ea3c4", * memberId: "4536bcfad5faccb111b47003c79917fa", * }); * ``` */ export declare function getAccountMember(args: GetAccountMemberArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAccountMember. */ export interface GetAccountMemberArgs { /** * Account identifier tag. */ accountId: string; filter?: inputs.GetAccountMemberFilter; /** * Membership identifier tag. */ memberId?: string; } /** * A collection of values returned by getAccountMember. */ export interface GetAccountMemberResult { /** * Account identifier tag. */ readonly accountId: string; readonly filter?: outputs.GetAccountMemberFilter; /** * Membership identifier tag. */ readonly id: string; /** * Membership identifier tag. */ readonly memberId?: string; /** * Access policy for the membership */ readonly policies: outputs.GetAccountMemberPolicy[]; /** * Roles assigned to this Member. */ readonly roles: outputs.GetAccountMemberRole[]; /** * A member's status in the account. * Available values: "accepted", "pending". */ readonly status: string; /** * Details of the user associated to the membership. */ readonly user: outputs.GetAccountMemberUser; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleAccountMember = cloudflare.getAccountMember({ * accountId: "eb78d65290b24279ba6f44721b3ea3c4", * memberId: "4536bcfad5faccb111b47003c79917fa", * }); * ``` */ export declare function getAccountMemberOutput(args: GetAccountMemberOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAccountMember. */ export interface GetAccountMemberOutputArgs { /** * Account identifier tag. */ accountId: pulumi.Input; filter?: pulumi.Input; /** * Membership identifier tag. */ memberId?: pulumi.Input; }