import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides a Datadog RumMetric resource. This can be used to create and manage Datadog rum_metric. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as datadog from "@pulumi/datadog"; * * // Create new rum_metric resource * const testingRumMetric = new datadog.RumMetric("testing_rum_metric", { * name: "testing.rum.metric", * compute: [{ * aggregationType: "distribution", * includePercentiles: true, * path: "@duration", * }], * eventType: "session", * filter: [{ * query: "@service:web-ui", * }], * groupBies: [{ * path: "@browser.name", * tagName: "browser_name", * }], * uniqueness: [{ * when: "match", * }], * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import datadog:index/rumMetric:RumMetric testing_rum_metric "testing.rum.metric" * ``` */ export declare class RumMetric extends pulumi.CustomResource { /** * Get an existing RumMetric 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?: RumMetricState, opts?: pulumi.CustomResourceOptions): RumMetric; /** * Returns true if the given object is an instance of RumMetric. 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 RumMetric; readonly compute: pulumi.Output; /** * The type of RUM events to filter on. */ readonly eventType: pulumi.Output; readonly filter: pulumi.Output; readonly groupBies: pulumi.Output; /** * The name of the RUM-based metric. This field can't be updated after creation. */ readonly name: pulumi.Output; readonly uniqueness: pulumi.Output; /** * Create a RumMetric 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: RumMetricArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering RumMetric resources. */ export interface RumMetricState { compute?: pulumi.Input; /** * The type of RUM events to filter on. */ eventType?: pulumi.Input; filter?: pulumi.Input; groupBies?: pulumi.Input[]>; /** * The name of the RUM-based metric. This field can't be updated after creation. */ name?: pulumi.Input; uniqueness?: pulumi.Input; } /** * The set of arguments for constructing a RumMetric resource. */ export interface RumMetricArgs { compute?: pulumi.Input; /** * The type of RUM events to filter on. */ eventType: pulumi.Input; filter?: pulumi.Input; groupBies?: pulumi.Input[]>; /** * The name of the RUM-based metric. This field can't be updated after creation. */ name: pulumi.Input; uniqueness?: pulumi.Input; }