import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of tos bucket inventories
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 * import * as volcengine from "@volcengine/pulumi";
 *
 * const fooBucketInventory = new volcengine.tos.BucketInventory("fooBucketInventory", {
 *     bucketName: "terraform-demo",
 *     inventoryId: "acc-test-inventory",
 *     isEnabled: true,
 *     includedObjectVersions: "All",
 *     schedule: {
 *         frequency: "Weekly",
 *     },
 *     filter: {
 *         prefix: "test-tf",
 *     },
 *     optionalFields: {
 *         fields: [
 *             "Size",
 *             "StorageClass",
 *             "CRC64",
 *         ],
 *     },
 *     destination: {
 *         tosBucketDestination: {
 *             format: "CSV",
 *             accountId: "21000*****",
 *             bucket: "terraform-demo",
 *             prefix: "tf-test-prefix",
 *             role: "TosArchiveTOSInventory",
 *         },
 *     },
 * });
 * const fooBucketInventories = volcengine.tos.getBucketInventoriesOutput({
 *     bucketName: "terraform-demo",
 *     inventoryId: fooBucketInventory.inventoryId,
 * });
 * ```
 */
export declare function getBucketInventories(args: GetBucketInventoriesArgs, opts?: pulumi.InvokeOptions): Promise<GetBucketInventoriesResult>;
/**
 * A collection of arguments for invoking getBucketInventories.
 */
export interface GetBucketInventoriesArgs {
    /**
     * The name the TOS bucket.
     */
    bucketName: string;
    /**
     * The id the TOS bucket inventory.
     */
    inventoryId?: string;
    /**
     * A Name Regex of TOS bucket inventory.
     */
    nameRegex?: string;
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
}
/**
 * A collection of values returned by getBucketInventories.
 */
export interface GetBucketInventoriesResult {
    /**
     * The name of the bucket.
     */
    readonly bucketName: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    /**
     * The collection of query.
     */
    readonly inventoryConfigurations: outputs.tos.GetBucketInventoriesInventoryConfiguration[];
    readonly inventoryId?: string;
    readonly nameRegex?: string;
    readonly outputFile?: string;
    /**
     * The total count of query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of tos bucket inventories
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 * import * as volcengine from "@volcengine/pulumi";
 *
 * const fooBucketInventory = new volcengine.tos.BucketInventory("fooBucketInventory", {
 *     bucketName: "terraform-demo",
 *     inventoryId: "acc-test-inventory",
 *     isEnabled: true,
 *     includedObjectVersions: "All",
 *     schedule: {
 *         frequency: "Weekly",
 *     },
 *     filter: {
 *         prefix: "test-tf",
 *     },
 *     optionalFields: {
 *         fields: [
 *             "Size",
 *             "StorageClass",
 *             "CRC64",
 *         ],
 *     },
 *     destination: {
 *         tosBucketDestination: {
 *             format: "CSV",
 *             accountId: "21000*****",
 *             bucket: "terraform-demo",
 *             prefix: "tf-test-prefix",
 *             role: "TosArchiveTOSInventory",
 *         },
 *     },
 * });
 * const fooBucketInventories = volcengine.tos.getBucketInventoriesOutput({
 *     bucketName: "terraform-demo",
 *     inventoryId: fooBucketInventory.inventoryId,
 * });
 * ```
 */
export declare function getBucketInventoriesOutput(args: GetBucketInventoriesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetBucketInventoriesResult>;
/**
 * A collection of arguments for invoking getBucketInventories.
 */
export interface GetBucketInventoriesOutputArgs {
    /**
     * The name the TOS bucket.
     */
    bucketName: pulumi.Input<string>;
    /**
     * The id the TOS bucket inventory.
     */
    inventoryId?: pulumi.Input<string>;
    /**
     * A Name Regex of TOS bucket inventory.
     */
    nameRegex?: pulumi.Input<string>;
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
}
