import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class CalculatedSyntheticMetric extends pulumi.CustomResource { /** * Get an existing CalculatedSyntheticMetric resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: CalculatedSyntheticMetricState, opts?: pulumi.CustomResourceOptions): CalculatedSyntheticMetric; /** * Returns true if the given object is an instance of CalculatedSyntheticMetric. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is CalculatedSyntheticMetric; /** * Descriptor of a calculated synthetic metric. */ readonly description: pulumi.Output; /** * Dimension of the calculated synthetic metric. */ readonly dimensions: pulumi.Output; /** * The metric is enabled (`true`) or disabled (`false`) */ readonly enabled: pulumi.Output; /** * Filter of the calculated synthetic metric. */ readonly filter: pulumi.Output; /** * The type of the synthetic metric. Possible values: [ ApplicationCache, Callback, CumulativeLayoutShift, DNSLookup, DOMComplete, DOMContentLoaded, DOMInteractive, FailedRequestsResources, FirstContentfulPaint, FirstInputDelay, FirstInputStart, FirstPaint, HTMLDownloaded, HttpErrors, JavaScriptErrors, LargestContentfulPaint, LoadEventEnd, LoadEventStart, LongTasks, NavigationStart, OnDOMContentLoaded, OnLoad, Processing, RedirectTime, Request, RequestStart, ResourceCount, Response, SecureConnect, SpeedIndex, TCPConnect, TimeToFirstByte, TotalDuration, TransferSize, UserActionDuration, VisuallyComplete ] */ readonly metric: pulumi.Output; /** * The unique key of the calculated synthetic metric. */ readonly metricKey: pulumi.Output; /** * The Dynatrace entity ID of the monitor to which the metric belongs. */ readonly monitorIdentifier: pulumi.Output; /** * The displayed name of the metric. */ readonly name: pulumi.Output; /** * Create a CalculatedSyntheticMetric resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: CalculatedSyntheticMetricArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CalculatedSyntheticMetric resources. */ export interface CalculatedSyntheticMetricState { /** * Descriptor of a calculated synthetic metric. */ description?: pulumi.Input; /** * Dimension of the calculated synthetic metric. */ dimensions?: pulumi.Input[]>; /** * The metric is enabled (`true`) or disabled (`false`) */ enabled?: pulumi.Input; /** * Filter of the calculated synthetic metric. */ filter?: pulumi.Input; /** * The type of the synthetic metric. Possible values: [ ApplicationCache, Callback, CumulativeLayoutShift, DNSLookup, DOMComplete, DOMContentLoaded, DOMInteractive, FailedRequestsResources, FirstContentfulPaint, FirstInputDelay, FirstInputStart, FirstPaint, HTMLDownloaded, HttpErrors, JavaScriptErrors, LargestContentfulPaint, LoadEventEnd, LoadEventStart, LongTasks, NavigationStart, OnDOMContentLoaded, OnLoad, Processing, RedirectTime, Request, RequestStart, ResourceCount, Response, SecureConnect, SpeedIndex, TCPConnect, TimeToFirstByte, TotalDuration, TransferSize, UserActionDuration, VisuallyComplete ] */ metric?: pulumi.Input; /** * The unique key of the calculated synthetic metric. */ metricKey?: pulumi.Input; /** * The Dynatrace entity ID of the monitor to which the metric belongs. */ monitorIdentifier?: pulumi.Input; /** * The displayed name of the metric. */ name?: pulumi.Input; } /** * The set of arguments for constructing a CalculatedSyntheticMetric resource. */ export interface CalculatedSyntheticMetricArgs { /** * Descriptor of a calculated synthetic metric. */ description?: pulumi.Input; /** * Dimension of the calculated synthetic metric. */ dimensions?: pulumi.Input[]>; /** * The metric is enabled (`true`) or disabled (`false`) */ enabled: pulumi.Input; /** * Filter of the calculated synthetic metric. */ filter?: pulumi.Input; /** * The type of the synthetic metric. Possible values: [ ApplicationCache, Callback, CumulativeLayoutShift, DNSLookup, DOMComplete, DOMContentLoaded, DOMInteractive, FailedRequestsResources, FirstContentfulPaint, FirstInputDelay, FirstInputStart, FirstPaint, HTMLDownloaded, HttpErrors, JavaScriptErrors, LargestContentfulPaint, LoadEventEnd, LoadEventStart, LongTasks, NavigationStart, OnDOMContentLoaded, OnLoad, Processing, RedirectTime, Request, RequestStart, ResourceCount, Response, SecureConnect, SpeedIndex, TCPConnect, TimeToFirstByte, TotalDuration, TransferSize, UserActionDuration, VisuallyComplete ] */ metric: pulumi.Input; /** * The unique key of the calculated synthetic metric. */ metricKey: pulumi.Input; /** * The Dynatrace entity ID of the monitor to which the metric belongs. */ monitorIdentifier: pulumi.Input; /** * The displayed name of the metric. */ name?: pulumi.Input; }