UNPKG

@lbrlabs/pulumi-dynatrace

Version:

A Pulumi package for creating and managing Dynatrace cloud resources.

38 lines (37 loc) 1.41 kB
import * as pulumi from "@pulumi/pulumi"; /** * The application data source allows the application ID to be retrieved by its name and optionally tags / tag-value pairs. * * - `name` queries for all applications with the specified name * - `tags` (optional) refers to the tags that need to be present for the application (inclusive) */ export declare function getApplication(args: GetApplicationArgs, opts?: pulumi.InvokeOptions): Promise<GetApplicationResult>; /** * 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 and optionally tags / tag-value pairs. * * - `name` queries for all applications with the specified name * - `tags` (optional) refers to the tags that need to be present for the application (inclusive) */ export declare function getApplicationOutput(args: GetApplicationOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetApplicationResult>; /** * A collection of arguments for invoking getApplication. */ export interface GetApplicationOutputArgs { name: pulumi.Input<string>; }