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 Alert Subscriptions in Oracle Cloud Infrastructure Costad service. * * Gets a list of Cost Alert Subscription in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCostAlertSubscriptions = oci.oci.getCostadCostAlertSubscriptions({ * compartmentId: compartmentId, * name: costAlertSubscriptionName, * state: costAlertSubscriptionState, * }); * ``` */ export declare function getCostadCostAlertSubscriptions(args: GetCostadCostAlertSubscriptionsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCostadCostAlertSubscriptions. */ export interface GetCostadCostAlertSubscriptionsArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.oci.GetCostadCostAlertSubscriptionsFilter[]; /** * Unique, non-changeable resource name. */ name?: string; /** * The current state of the cost alert subscription. */ state?: string; } /** * A collection of values returned by getCostadCostAlertSubscriptions. */ export interface GetCostadCostAlertSubscriptionsResult { /** * The OCID of the compartment which hold the cost alert subscription resource. */ readonly compartmentId: string; /** * The list of cost_alert_subscription_collection. */ readonly costAlertSubscriptionCollections: outputs.oci.GetCostadCostAlertSubscriptionsCostAlertSubscriptionCollection[]; readonly filters?: outputs.oci.GetCostadCostAlertSubscriptionsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The name of the cost alert subscription. Avoid entering confidential information. */ readonly name?: string; /** * The current state of the cost alert subscription. */ readonly state?: string; } /** * This data source provides the list of Cost Alert Subscriptions in Oracle Cloud Infrastructure Costad service. * * Gets a list of Cost Alert Subscription in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCostAlertSubscriptions = oci.oci.getCostadCostAlertSubscriptions({ * compartmentId: compartmentId, * name: costAlertSubscriptionName, * state: costAlertSubscriptionState, * }); * ``` */ export declare function getCostadCostAlertSubscriptionsOutput(args: GetCostadCostAlertSubscriptionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCostadCostAlertSubscriptions. */ export interface GetCostadCostAlertSubscriptionsOutputArgs { /** * 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; /** * The current state of the cost alert subscription. */ state?: pulumi.Input; } //# sourceMappingURL=getCostadCostAlertSubscriptions.d.ts.map