import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage */ export declare function getFunctionality(args?: GetFunctionalityArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFunctionality. */ export interface GetFunctionalityArgs { backstageId?: string; cortexId?: string; /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: { [key: string]: string; }; externalId?: string; name?: string; slug?: string; } /** * A collection of values returned by getFunctionality. */ export interface GetFunctionalityResult { readonly backstageId: string; readonly cortexId: string; /** * Filter by date range using 'lt' and 'gt'. */ readonly createdAt?: { [key: string]: string; }; readonly externalId: string; /** * The ID of this resource. */ readonly id: string; readonly name: string; readonly slug: string; } /** * ## Example Usage */ export declare function getFunctionalityOutput(args?: GetFunctionalityOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFunctionality. */ export interface GetFunctionalityOutputArgs { backstageId?: pulumi.Input; cortexId?: pulumi.Input; /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; externalId?: pulumi.Input; name?: pulumi.Input; slug?: pulumi.Input; } //# sourceMappingURL=getFunctionality.d.ts.map