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 Budget 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.budget.getCostAlertSubscriptions({ * compartmentId: compartmentId, * name: costAlertSubscriptionName, * state: costAlertSubscriptionState, * }); * ``` */ export declare function getCostAlertSubscriptions(args: GetCostAlertSubscriptionsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCostAlertSubscriptions. */ export interface GetCostAlertSubscriptionsArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.Budget.GetCostAlertSubscriptionsFilter[]; /** * Unique, non-changeable resource name. */ name?: string; /** * The current state of the cost alert subscription. */ state?: string; } /** * A collection of values returned by getCostAlertSubscriptions. */ export interface GetCostAlertSubscriptionsResult { /** * 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.Budget.GetCostAlertSubscriptionsCostAlertSubscriptionCollection[]; readonly filters?: outputs.Budget.GetCostAlertSubscriptionsFilter[]; /** * 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 Budget 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.budget.getCostAlertSubscriptions({ * compartmentId: compartmentId, * name: costAlertSubscriptionName, * state: costAlertSubscriptionState, * }); * ``` */ export declare function getCostAlertSubscriptionsOutput(args: GetCostAlertSubscriptionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCostAlertSubscriptions. */ export interface GetCostAlertSubscriptionsOutputArgs { /** * 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=getCostAlertSubscriptions.d.ts.map