import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of ecs deployment sets
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 * import * as volcengine from "@volcengine/pulumi";
 *
 * const fooDeploymentSet: volcengine.ecs.DeploymentSet[] = [];
 * for (const range = {value: 0}; range.value < 3; range.value++) {
 *     fooDeploymentSet.push(new volcengine.ecs.DeploymentSet(`fooDeploymentSet-${range.value}`, {
 *         deploymentSetName: `acc-test-ecs-ds-${range.value}`,
 *         description: "acc-test",
 *         granularity: "switch",
 *         strategy: "Availability",
 *     }));
 * }
 * const fooDeploymentSets = volcengine.ecs.getDeploymentSetsOutput({
 *     granularity: "switch",
 *     ids: fooDeploymentSet.map(__item => __item.id),
 * });
 * ```
 */
/** @deprecated volcengine.ecs.DeploymentSets has been deprecated in favor of volcengine.ecs.getDeploymentSets */
export declare function deploymentSets(args?: DeploymentSetsArgs, opts?: pulumi.InvokeOptions): Promise<DeploymentSetsResult>;
/**
 * A collection of arguments for invoking DeploymentSets.
 */
export interface DeploymentSetsArgs {
    /**
     * The granularity of ECS DeploymentSet.Valid values: switch, host, rack.
     */
    granularity?: string;
    /**
     * A list of ECS DeploymentSet IDs.
     */
    ids?: string[];
    /**
     * A Name Regex of ECS DeploymentSet.
     */
    nameRegex?: string;
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
}
/**
 * A collection of values returned by DeploymentSets.
 */
export interface DeploymentSetsResult {
    /**
     * The collection of ECS DeploymentSet query.
     */
    readonly deploymentSets: outputs.ecs.DeploymentSetsDeploymentSet[];
    /**
     * The granularity of ECS DeploymentSet.
     */
    readonly granularity?: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly ids?: string[];
    readonly nameRegex?: string;
    readonly outputFile?: string;
    /**
     * The total count of ECS DeploymentSet query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of ecs deployment sets
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 * import * as volcengine from "@volcengine/pulumi";
 *
 * const fooDeploymentSet: volcengine.ecs.DeploymentSet[] = [];
 * for (const range = {value: 0}; range.value < 3; range.value++) {
 *     fooDeploymentSet.push(new volcengine.ecs.DeploymentSet(`fooDeploymentSet-${range.value}`, {
 *         deploymentSetName: `acc-test-ecs-ds-${range.value}`,
 *         description: "acc-test",
 *         granularity: "switch",
 *         strategy: "Availability",
 *     }));
 * }
 * const fooDeploymentSets = volcengine.ecs.getDeploymentSetsOutput({
 *     granularity: "switch",
 *     ids: fooDeploymentSet.map(__item => __item.id),
 * });
 * ```
 */
/** @deprecated volcengine.ecs.DeploymentSets has been deprecated in favor of volcengine.ecs.getDeploymentSets */
export declare function deploymentSetsOutput(args?: DeploymentSetsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<DeploymentSetsResult>;
/**
 * A collection of arguments for invoking DeploymentSets.
 */
export interface DeploymentSetsOutputArgs {
    /**
     * The granularity of ECS DeploymentSet.Valid values: switch, host, rack.
     */
    granularity?: pulumi.Input<string>;
    /**
     * A list of ECS DeploymentSet IDs.
     */
    ids?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * A Name Regex of ECS DeploymentSet.
     */
    nameRegex?: pulumi.Input<string>;
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
}
