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 Tracking Tags in Oracle Cloud Infrastructure Identity service. * * Lists all the tags enabled for cost-tracking in the specified tenancy. For information about * cost-tracking tags, see [Using Cost-tracking Tags](https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/taggingoverview.htm#costs). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCostTrackingTags = oci.identity.getCostTrackingTags({ * compartmentId: compartmentId, * }); * ``` */ export declare function getCostTrackingTags(args: GetCostTrackingTagsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCostTrackingTags. */ export interface GetCostTrackingTagsArgs { /** * The OCID of the compartment (remember that the tenancy is simply the root compartment). */ compartmentId: string; filters?: inputs.Identity.GetCostTrackingTagsFilter[]; } /** * A collection of values returned by getCostTrackingTags. */ export interface GetCostTrackingTagsResult { /** * The OCID of the compartment that contains the tag definition. */ readonly compartmentId: string; readonly filters?: outputs.Identity.GetCostTrackingTagsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of tags. */ readonly tags: outputs.Identity.GetCostTrackingTagsTag[]; } /** * This data source provides the list of Cost Tracking Tags in Oracle Cloud Infrastructure Identity service. * * Lists all the tags enabled for cost-tracking in the specified tenancy. For information about * cost-tracking tags, see [Using Cost-tracking Tags](https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/taggingoverview.htm#costs). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCostTrackingTags = oci.identity.getCostTrackingTags({ * compartmentId: compartmentId, * }); * ``` */ export declare function getCostTrackingTagsOutput(args: GetCostTrackingTagsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCostTrackingTags. */ export interface GetCostTrackingTagsOutputArgs { /** * The OCID of the compartment (remember that the tenancy is simply the root compartment). */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getCostTrackingTags.d.ts.map