import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Cost Alert Subscription resource in Oracle Cloud Infrastructure Budget service. * * Gets a CostAlertSubscription by the identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCostAlertSubscription = oci.budget.getCostAlertSubscription({ * costAlertSubscriptionId: testCostAlertSubscriptionOciBudgetCostAlertSubscription.id, * }); * ``` */ export declare function getCostAlertSubscription(args: GetCostAlertSubscriptionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCostAlertSubscription. */ export interface GetCostAlertSubscriptionArgs { /** * The unique costAlertSubscription OCID. */ costAlertSubscriptionId: string; } /** * A collection of values returned by getCostAlertSubscription. */ export interface GetCostAlertSubscriptionResult { /** * The notification channels string. */ readonly channels: string; /** * The OCID of the compartment which hold the cost alert subscription resource. */ readonly compartmentId: string; readonly costAlertSubscriptionId: string; /** * List of monitor identifiers */ readonly costAnomalyMonitors: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * The description of the cost alert subscription. */ readonly description: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The OCID of the Cost Alert Subscription. */ 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; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time that the cost alert subscription was created. */ readonly timeCreated: string; /** * The time that the cost alert subscription was updated. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Cost Alert Subscription resource in Oracle Cloud Infrastructure Budget service. * * Gets a CostAlertSubscription by the identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCostAlertSubscription = oci.budget.getCostAlertSubscription({ * costAlertSubscriptionId: testCostAlertSubscriptionOciBudgetCostAlertSubscription.id, * }); * ``` */ export declare function getCostAlertSubscriptionOutput(args: GetCostAlertSubscriptionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCostAlertSubscription. */ export interface GetCostAlertSubscriptionOutputArgs { /** * The unique costAlertSubscription OCID. */ costAlertSubscriptionId: pulumi.Input; } //# sourceMappingURL=getCostAlertSubscription.d.ts.map