import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of tos objects
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.tos.getBucketObjects({
 *     bucketName: "test",
 * });
 * ```
 */
/** @deprecated volcengine.tos.BucketObjects has been deprecated in favor of volcengine.tos.getBucketObjects */
export declare function bucketObjects(args: BucketObjectsArgs, opts?: pulumi.InvokeOptions): Promise<BucketObjectsResult>;
/**
 * A collection of arguments for invoking BucketObjects.
 */
export interface BucketObjectsArgs {
    /**
     * The name the TOS bucket.
     */
    bucketName: string;
    /**
     * A Name Regex of TOS Object.
     */
    nameRegex?: string;
    /**
     * The name the TOS Object.
     */
    objectName?: string;
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
}
/**
 * A collection of values returned by BucketObjects.
 */
export interface BucketObjectsResult {
    readonly bucketName: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly nameRegex?: string;
    readonly objectName?: string;
    /**
     * The collection of TOS Object query.
     */
    readonly objects: outputs.tos.BucketObjectsObject[];
    readonly outputFile?: string;
    /**
     * The total count of TOS Object query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of tos objects
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.tos.getBucketObjects({
 *     bucketName: "test",
 * });
 * ```
 */
/** @deprecated volcengine.tos.BucketObjects has been deprecated in favor of volcengine.tos.getBucketObjects */
export declare function bucketObjectsOutput(args: BucketObjectsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<BucketObjectsResult>;
/**
 * A collection of arguments for invoking BucketObjects.
 */
export interface BucketObjectsOutputArgs {
    /**
     * The name the TOS bucket.
     */
    bucketName: pulumi.Input<string>;
    /**
     * A Name Regex of TOS Object.
     */
    nameRegex?: pulumi.Input<string>;
    /**
     * The name the TOS Object.
     */
    objectName?: pulumi.Input<string>;
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
}
