import * as pulumi from "@pulumi/pulumi"; /** * Provides a Datadog GcpUcConfig resource. This can be used to create and manage Datadog gcp_uc_config. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as datadog from "@pulumi/datadog"; * * // Create new GCP Usage Cost configuration resource * const example = new datadog.GcpUcConfig("example", { * billingAccountId: "123456_ABCDEF_123456", * bucketName: "my-gcp-cost-bucket", * exportDatasetName: "billing_export", * exportPrefix: "datadog_cloud_cost_detailed_usage_export", * exportProjectName: "my-gcp-project", * serviceAccount: "datadog-cost-management@my-gcp-project.iam.gserviceaccount.com", * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import datadog:index/gcpUcConfig:GcpUcConfig example * ``` */ export declare class GcpUcConfig extends pulumi.CustomResource { /** * Get an existing GcpUcConfig resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: GcpUcConfigState, opts?: pulumi.CustomResourceOptions): GcpUcConfig; /** * Returns true if the given object is an instance of GcpUcConfig. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is GcpUcConfig; /** * The Google Cloud account ID. */ readonly billingAccountId: pulumi.Output; /** * The Google Cloud bucket name used to store the Usage Cost export. */ readonly bucketName: pulumi.Output; /** * The timestamp when the GCP UC configuration was created. */ readonly createdAt: pulumi.Output; /** * The dataset name used for the GCP Usage Cost export. */ readonly dataset: pulumi.Output; /** * List of error messages if the GCP UC configuration encountered any issues during setup or data processing. */ readonly errorMessages: pulumi.Output; /** * The export dataset name used for the Google Cloud Usage Cost report. */ readonly exportDatasetName: pulumi.Output; /** * The export prefix used for the Google Cloud Usage Cost report. */ readonly exportPrefix: pulumi.Output; /** * The name of the Google Cloud Usage Cost report. */ readonly exportProjectName: pulumi.Output; /** * The number of months of usage data to include in the export. */ readonly months: pulumi.Output; /** * The unique Google Cloud service account email. */ readonly serviceAccount: pulumi.Output; /** * The current status of the GCP UC configuration. */ readonly status: pulumi.Output; /** * The timestamp when the configuration status was last updated. */ readonly statusUpdatedAt: pulumi.Output; /** * The timestamp when the GCP UC configuration was last modified. */ readonly updatedAt: pulumi.Output; /** * Create a GcpUcConfig resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: GcpUcConfigArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering GcpUcConfig resources. */ export interface GcpUcConfigState { /** * The Google Cloud account ID. */ billingAccountId?: pulumi.Input; /** * The Google Cloud bucket name used to store the Usage Cost export. */ bucketName?: pulumi.Input; /** * The timestamp when the GCP UC configuration was created. */ createdAt?: pulumi.Input; /** * The dataset name used for the GCP Usage Cost export. */ dataset?: pulumi.Input; /** * List of error messages if the GCP UC configuration encountered any issues during setup or data processing. */ errorMessages?: pulumi.Input[]>; /** * The export dataset name used for the Google Cloud Usage Cost report. */ exportDatasetName?: pulumi.Input; /** * The export prefix used for the Google Cloud Usage Cost report. */ exportPrefix?: pulumi.Input; /** * The name of the Google Cloud Usage Cost report. */ exportProjectName?: pulumi.Input; /** * The number of months of usage data to include in the export. */ months?: pulumi.Input; /** * The unique Google Cloud service account email. */ serviceAccount?: pulumi.Input; /** * The current status of the GCP UC configuration. */ status?: pulumi.Input; /** * The timestamp when the configuration status was last updated. */ statusUpdatedAt?: pulumi.Input; /** * The timestamp when the GCP UC configuration was last modified. */ updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a GcpUcConfig resource. */ export interface GcpUcConfigArgs { /** * The Google Cloud account ID. */ billingAccountId: pulumi.Input; /** * The Google Cloud bucket name used to store the Usage Cost export. */ bucketName: pulumi.Input; /** * The export dataset name used for the Google Cloud Usage Cost report. */ exportDatasetName: pulumi.Input; /** * The export prefix used for the Google Cloud Usage Cost report. */ exportPrefix?: pulumi.Input; /** * The name of the Google Cloud Usage Cost report. */ exportProjectName: pulumi.Input; /** * The unique Google Cloud service account email. */ serviceAccount: pulumi.Input; }