import * as pulumi from "@pulumi/pulumi"; /** * Uses this data source to access information about an existing Managed Application Definition. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.managedapplication.getDefinition({ * name: "examplemanagedappdef", * resourceGroupName: "exampleresources", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Solutions` - 2021-07-01 */ export declare function getDefinition(args: GetDefinitionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDefinition. */ export interface GetDefinitionArgs { /** * Specifies the name of the Managed Application Definition. */ name: string; /** * Specifies the name of the Resource Group where this Managed Application Definition exists. */ resourceGroupName: string; } /** * A collection of values returned by getDefinition. */ export interface GetDefinitionResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly location: string; readonly name: string; readonly resourceGroupName: string; } /** * Uses this data source to access information about an existing Managed Application Definition. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.managedapplication.getDefinition({ * name: "examplemanagedappdef", * resourceGroupName: "exampleresources", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Solutions` - 2021-07-01 */ export declare function getDefinitionOutput(args: GetDefinitionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDefinition. */ export interface GetDefinitionOutputArgs { /** * Specifies the name of the Managed Application Definition. */ name: pulumi.Input; /** * Specifies the name of the Resource Group where this Managed Application Definition exists. */ resourceGroupName: pulumi.Input; }