import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to retrieve information about an existing Datadog Powerpack. */ export declare function getPowerpack(args: GetPowerpackArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPowerpack. */ export interface GetPowerpackArgs { /** * The name of the Powerpack to search for. */ name: string; } /** * A collection of values returned by getPowerpack. */ export interface GetPowerpackResult { /** * The ID of this resource. */ readonly id: string; /** * The name of the Powerpack to search for. */ readonly name: string; } /** * Use this data source to retrieve information about an existing Datadog Powerpack. */ export declare function getPowerpackOutput(args: GetPowerpackOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPowerpack. */ export interface GetPowerpackOutputArgs { /** * The name of the Powerpack to search for. */ name: pulumi.Input; }