import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Endpoint Custom Attribute. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.identitymanagement.getEndpointCustomAttribute({ * id: "isMobile", * }); * ``` */ export declare function getEndpointCustomAttribute(args: GetEndpointCustomAttributeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEndpointCustomAttribute. */ export interface GetEndpointCustomAttributeArgs { /** * The id of the object */ id: string; } /** * A collection of values returned by getEndpointCustomAttribute. */ export interface GetEndpointCustomAttributeResult { /** * The name of the attribute */ readonly attributeName: string; /** * Attribute type */ readonly attributeType: string; /** * The id of the object */ readonly id: string; } /** * This data source can read the Endpoint Custom Attribute. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.identitymanagement.getEndpointCustomAttribute({ * id: "isMobile", * }); * ``` */ export declare function getEndpointCustomAttributeOutput(args: GetEndpointCustomAttributeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEndpointCustomAttribute. */ export interface GetEndpointCustomAttributeOutputArgs { /** * The id of the object */ id: pulumi.Input; } //# sourceMappingURL=getEndpointCustomAttribute.d.ts.map