import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data Source schema for Volcengine::ECS::DeploymentSet */ export declare function getDeploymentSet(args: GetDeploymentSetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDeploymentSet. */ export interface GetDeploymentSetArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getDeploymentSet. */ export interface GetDeploymentSetResult { /** * Instance launch template version information. */ readonly capacities: outputs.ecs.GetDeploymentSetCapacity[]; /** * Deployment set creation time. */ readonly createdAt: string; /** * Deployment set group index. Value range: 1–7. */ readonly deploymentSetGroupNumber: number; /** * Deployment set ID. */ readonly deploymentSetId: string; /** * Deployment set name. Cannot start with a digit, hyphen, or underscore. Can only contain Chinese characters, letters, digits, underscores, and hyphens. Length limit: 1–128 characters. */ readonly deploymentSetName: string; /** * Deployment set description. Must start with a letter or Chinese character. Can only contain Chinese characters, letters, digits, period '.', space, underscore '_', hyphen '-', equals '=', English comma ',', Chinese comma ',', and Chinese period '。'. Length limit: within 255 characters. */ readonly description: string; /** * Deployment granularity. Options: host: physical machine. rack: rack. switch: switch. */ readonly granularity: string; /** * Number of deployment set groups. Set the group count for the deployment set group high availability policy. Value range: 1–7. Default: 7. */ readonly groupCount: number; /** * Uniquely identifies the resource. */ readonly id: string; /** * Number of ECS instances in the deployment set. */ readonly instanceAmount: number; /** * List of ECS instance IDs in the deployment set. */ readonly instanceIds: string[]; /** * Deployment policy. Options: Availability (default): high availability policy. AvailabilityGroup: deployment set group high availability policy. */ readonly strategy: string; } /** * Data Source schema for Volcengine::ECS::DeploymentSet */ export declare function getDeploymentSetOutput(args: GetDeploymentSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDeploymentSet. */ export interface GetDeploymentSetOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }