import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Baselineable Metric resource in Oracle Cloud Infrastructure Stack Monitoring service. * * Get the Baseline-able metric for the given id * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBaselineableMetric = oci.stackmonitoring.getBaselineableMetric({ * baselineableMetricId: testBaselineableMetricOciStackMonitoringBaselineableMetric.id, * }); * ``` */ export declare function getBaselineableMetric(args: GetBaselineableMetricArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBaselineableMetric. */ export interface GetBaselineableMetricArgs { /** * Identifier for the metric */ baselineableMetricId: string; } /** * A collection of values returned by getBaselineableMetric. */ export interface GetBaselineableMetricResult { readonly baselineableMetricId: string; /** * metric column name */ readonly column: string; /** * OCID of the compartment */ readonly compartmentId: string; /** * Created user id */ readonly createdBy: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * OCID of the metric */ readonly id: string; /** * Is the metric created out of box, default false */ readonly isOutOfBox: boolean; /** * last Updated user id */ readonly lastUpdatedBy: string; /** * name of the metric */ readonly name: string; /** * namespace of the metric */ readonly namespace: string; /** * Resource group of the metric */ readonly resourceGroup: string; /** * Resource type of the metric */ readonly resourceType: string; /** * The current lifecycle state of the metric extension */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * OCID of the tenancy */ readonly tenancyId: string; /** * creation date */ readonly timeCreated: string; /** * last updated time */ readonly timeLastUpdated: string; } /** * This data source provides details about a specific Baselineable Metric resource in Oracle Cloud Infrastructure Stack Monitoring service. * * Get the Baseline-able metric for the given id * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBaselineableMetric = oci.stackmonitoring.getBaselineableMetric({ * baselineableMetricId: testBaselineableMetricOciStackMonitoringBaselineableMetric.id, * }); * ``` */ export declare function getBaselineableMetricOutput(args: GetBaselineableMetricOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBaselineableMetric. */ export interface GetBaselineableMetricOutputArgs { /** * Identifier for the metric */ baselineableMetricId: pulumi.Input; } //# sourceMappingURL=getBaselineableMetric.d.ts.map