import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Baselineable Metrics in Oracle Cloud Infrastructure Stack Monitoring service. * * List of summary of baseline-able metrics for a given resource group if specified. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBaselineableMetrics = oci.stackmonitoring.getBaselineableMetrics({ * baselineableMetricId: testBaselineableMetric.id, * compartmentId: compartmentId, * isOutOfBox: baselineableMetricIsOutOfBox === "true", * metricNamespace: baselineableMetricMetricNamespace, * name: baselineableMetricName, * resourceGroup: baselineableMetricResourceGroup, * resourceType: baselineableMetricResourceType, * }); * ``` */ export declare function getBaselineableMetrics(args?: GetBaselineableMetricsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBaselineableMetrics. */ export interface GetBaselineableMetricsArgs { /** * Identifier for the metric */ baselineableMetricId?: string; /** * The ID of the compartment in which data is listed. */ compartmentId?: string; filters?: inputs.StackMonitoring.GetBaselineableMetricsFilter[]; /** * Is the baseline enabled metric defined out of box by Oracle or by end-user */ isOutOfBox?: boolean; /** * A filter to return monitored resource types that has the matching namespace. */ metricNamespace?: string; /** * Metric Name */ name?: string; /** * Resource Group */ resourceGroup?: string; /** * Resource Type */ resourceType?: string; } /** * A collection of values returned by getBaselineableMetrics. */ export interface GetBaselineableMetricsResult { readonly baselineableMetricId?: string; /** * The list of baselineable_metric_summary_collection. */ readonly baselineableMetricSummaryCollections: outputs.StackMonitoring.GetBaselineableMetricsBaselineableMetricSummaryCollection[]; /** * OCID of the compartment */ readonly compartmentId?: string; readonly filters?: outputs.StackMonitoring.GetBaselineableMetricsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Is the metric created out of box, default false */ readonly isOutOfBox?: boolean; readonly metricNamespace?: string; /** * name of the metric */ readonly name?: string; /** * Resource group of the metric */ readonly resourceGroup?: string; /** * Resource type of the metric */ readonly resourceType?: string; } /** * This data source provides the list of Baselineable Metrics in Oracle Cloud Infrastructure Stack Monitoring service. * * List of summary of baseline-able metrics for a given resource group if specified. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBaselineableMetrics = oci.stackmonitoring.getBaselineableMetrics({ * baselineableMetricId: testBaselineableMetric.id, * compartmentId: compartmentId, * isOutOfBox: baselineableMetricIsOutOfBox === "true", * metricNamespace: baselineableMetricMetricNamespace, * name: baselineableMetricName, * resourceGroup: baselineableMetricResourceGroup, * resourceType: baselineableMetricResourceType, * }); * ``` */ export declare function getBaselineableMetricsOutput(args?: GetBaselineableMetricsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBaselineableMetrics. */ export interface GetBaselineableMetricsOutputArgs { /** * Identifier for the metric */ baselineableMetricId?: pulumi.Input; /** * The ID of the compartment in which data is listed. */ compartmentId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Is the baseline enabled metric defined out of box by Oracle or by end-user */ isOutOfBox?: pulumi.Input; /** * A filter to return monitored resource types that has the matching namespace. */ metricNamespace?: pulumi.Input; /** * Metric Name */ name?: pulumi.Input; /** * Resource Group */ resourceGroup?: pulumi.Input; /** * Resource Type */ resourceType?: pulumi.Input; } //# sourceMappingURL=getBaselineableMetrics.d.ts.map