import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Data source to retrieve a specific Auth0 User Attribute Profile by `userAttributeProfileId` or `name`. */ export declare function getUserAttributeProfile(args?: GetUserAttributeProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getUserAttributeProfile. */ export interface GetUserAttributeProfileArgs { /** * The name of the User Attribute Profile. */ name?: string; /** * The ID of the User Attribute Profile. */ userAttributeProfileId?: string; } /** * A collection of values returned by getUserAttributeProfile. */ export interface GetUserAttributeProfileResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The name of the User Attribute Profile. */ readonly name?: string; /** * The ID of the User Attribute Profile. */ readonly userAttributeProfileId?: string; /** * List of user attribute configurations. */ readonly userAttributes: outputs.GetUserAttributeProfileUserAttribute[]; /** * Configuration for mapping the user ID from identity providers. */ readonly userIds: outputs.GetUserAttributeProfileUserId[]; } /** * Data source to retrieve a specific Auth0 User Attribute Profile by `userAttributeProfileId` or `name`. */ export declare function getUserAttributeProfileOutput(args?: GetUserAttributeProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getUserAttributeProfile. */ export interface GetUserAttributeProfileOutputArgs { /** * The name of the User Attribute Profile. */ name?: pulumi.Input; /** * The ID of the User Attribute Profile. */ userAttributeProfileId?: pulumi.Input; }