import * as pulumi from "@pulumi/pulumi"; /** * The application data source allows the application ID to be retrieved by its name. * * - `name` queries for all applications with the specified name * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as dynatrace from "@pulumiverse/dynatrace"; * * const test = dynatrace.getApplication({ * name: "Example", * }); * const _name_ = new dynatrace.ApplicationDetectionRule("#name#", { * applicationIdentifier: test.then(test => test.id), * filterConfig: { * applicationMatchTarget: "DOMAIN", * applicationMatchType: "MATCHES", * pattern: "www.google.com", * }, * }); * ``` */ export declare function getApplication(args: GetApplicationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getApplication. */ export interface GetApplicationArgs { name: string; } /** * A collection of values returned by getApplication. */ export interface GetApplicationResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; } /** * The application data source allows the application ID to be retrieved by its name. * * - `name` queries for all applications with the specified name * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as dynatrace from "@pulumiverse/dynatrace"; * * const test = dynatrace.getApplication({ * name: "Example", * }); * const _name_ = new dynatrace.ApplicationDetectionRule("#name#", { * applicationIdentifier: test.then(test => test.id), * filterConfig: { * applicationMatchTarget: "DOMAIN", * applicationMatchType: "MATCHES", * pattern: "www.google.com", * }, * }); * ``` */ export declare function getApplicationOutput(args: GetApplicationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getApplication. */ export interface GetApplicationOutputArgs { name: pulumi.Input; }