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 Cost Anomaly Monitors in Oracle Cloud Infrastructure Costad service. * * Gets a list of Cost Anomaly Monitors in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCostAnomalyMonitors = oci.oci.getCostadCostAnomalyMonitors({ * compartmentId: compartmentId, * name: costAnomalyMonitorName, * regions: costAnomalyMonitorRegion, * state: costAnomalyMonitorState, * targetTenantIds: testTargetTenant.id, * }); * ``` */ export declare function getCostadCostAnomalyMonitors(args: GetCostadCostAnomalyMonitorsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCostadCostAnomalyMonitors. */ export interface GetCostadCostAnomalyMonitorsArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.oci.GetCostadCostAnomalyMonitorsFilter[]; /** * Unique, non-changeable resource name. */ name?: string; /** * Cost Anomaly Monitor target resource filter region. */ regions?: string[]; /** * The current state of the cost monitor. */ state?: string; /** * The target tenantId ocid filter param. */ targetTenantIds?: string[]; } /** * A collection of values returned by getCostadCostAnomalyMonitors. */ export interface GetCostadCostAnomalyMonitorsResult { /** * The OCID of the compartment. */ readonly compartmentId: string; /** * The list of cost_anomaly_monitor_collection. */ readonly costAnomalyMonitorCollections: outputs.oci.GetCostadCostAnomalyMonitorsCostAnomalyMonitorCollection[]; readonly filters?: outputs.oci.GetCostadCostAnomalyMonitorsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The name of the cost anomaly monitor. Avoid entering confidential information. */ readonly name?: string; readonly regions?: string[]; /** * The current state of the cost monitor. */ readonly state?: string; readonly targetTenantIds?: string[]; } /** * This data source provides the list of Cost Anomaly Monitors in Oracle Cloud Infrastructure Costad service. * * Gets a list of Cost Anomaly Monitors in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCostAnomalyMonitors = oci.oci.getCostadCostAnomalyMonitors({ * compartmentId: compartmentId, * name: costAnomalyMonitorName, * regions: costAnomalyMonitorRegion, * state: costAnomalyMonitorState, * targetTenantIds: testTargetTenant.id, * }); * ``` */ export declare function getCostadCostAnomalyMonitorsOutput(args: GetCostadCostAnomalyMonitorsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCostadCostAnomalyMonitors. */ export interface GetCostadCostAnomalyMonitorsOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Unique, non-changeable resource name. */ name?: pulumi.Input; /** * Cost Anomaly Monitor target resource filter region. */ regions?: pulumi.Input[] | undefined>; /** * The current state of the cost monitor. */ state?: pulumi.Input; /** * The target tenantId ocid filter param. */ targetTenantIds?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getCostadCostAnomalyMonitors.d.ts.map