UNPKG

@lbrlabs/pulumi-dynatrace

Version:

A Pulumi package for creating and managing Dynatrace cloud resources.

26 lines (25 loc) 962 B
import * as pulumi from "@pulumi/pulumi"; export declare function getCalculatedServiceMetric(args: GetCalculatedServiceMetricArgs, opts?: pulumi.InvokeOptions): Promise<GetCalculatedServiceMetricResult>; /** * A collection of arguments for invoking getCalculatedServiceMetric. */ export interface GetCalculatedServiceMetricArgs { name: string; } /** * A collection of values returned by getCalculatedServiceMetric. */ export interface GetCalculatedServiceMetricResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; } export declare function getCalculatedServiceMetricOutput(args: GetCalculatedServiceMetricOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetCalculatedServiceMetricResult>; /** * A collection of arguments for invoking getCalculatedServiceMetric. */ export interface GetCalculatedServiceMetricOutputArgs { name: pulumi.Input<string>; }