import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class MetricMetadata extends pulumi.CustomResource { /** * Get an existing MetricMetadata 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?: MetricMetadataState, opts?: pulumi.CustomResourceOptions): MetricMetadata; /** * Returns true if the given object is an instance of MetricMetadata. 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 MetricMetadata; /** * Description */ readonly description: pulumi.Output; /** * Define metadata per metric dimension. */ readonly dimensions: pulumi.Output; /** * Display name */ readonly displayName: pulumi.Output; /** * The scope of this setting (metric) */ readonly metricId: pulumi.Output; /** * Metric properties */ readonly metricProperties: pulumi.Output; /** * Specifies which entity dimension should be used as the primary dimension. The property can only be configured for metrics ingested with the Metrics API. */ readonly sourceEntityType: pulumi.Output; /** * Tags */ readonly tags: pulumi.Output; /** * Unit */ readonly unit: pulumi.Output; /** * The raw value is stored in bits or bytes. The user interface can display it in these numeral systems: */ readonly unitDisplayFormat: pulumi.Output; /** * Create a MetricMetadata 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: MetricMetadataArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering MetricMetadata resources. */ export interface MetricMetadataState { /** * Description */ description?: pulumi.Input; /** * Define metadata per metric dimension. */ dimensions?: pulumi.Input; /** * Display name */ displayName?: pulumi.Input; /** * The scope of this setting (metric) */ metricId?: pulumi.Input; /** * Metric properties */ metricProperties?: pulumi.Input; /** * Specifies which entity dimension should be used as the primary dimension. The property can only be configured for metrics ingested with the Metrics API. */ sourceEntityType?: pulumi.Input; /** * Tags */ tags?: pulumi.Input[]>; /** * Unit */ unit?: pulumi.Input; /** * The raw value is stored in bits or bytes. The user interface can display it in these numeral systems: */ unitDisplayFormat?: pulumi.Input; } /** * The set of arguments for constructing a MetricMetadata resource. */ export interface MetricMetadataArgs { /** * Description */ description?: pulumi.Input; /** * Define metadata per metric dimension. */ dimensions?: pulumi.Input; /** * Display name */ displayName?: pulumi.Input; /** * The scope of this setting (metric) */ metricId: pulumi.Input; /** * Metric properties */ metricProperties?: pulumi.Input; /** * Specifies which entity dimension should be used as the primary dimension. The property can only be configured for metrics ingested with the Metrics API. */ sourceEntityType?: pulumi.Input; /** * Tags */ tags?: pulumi.Input[]>; /** * Unit */ unit: pulumi.Input; /** * The raw value is stored in bits or bytes. The user interface can display it in these numeral systems: */ unitDisplayFormat?: pulumi.Input; }