@aws-sdk/client-ecs 3.1021.0 → 3.1022.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +91 -7
- package/dist-cjs/index.js +530 -33
- package/dist-cjs/models/errors.js +37 -11
- package/dist-cjs/schemas/schemas_0.js +508 -100
- package/dist-es/ECS.js +34 -0
- package/dist-es/commands/CreateDaemonCommand.js +16 -0
- package/dist-es/commands/DeleteDaemonCommand.js +16 -0
- package/dist-es/commands/DeleteDaemonTaskDefinitionCommand.js +16 -0
- package/dist-es/commands/DescribeDaemonCommand.js +16 -0
- package/dist-es/commands/DescribeDaemonDeploymentsCommand.js +16 -0
- package/dist-es/commands/DescribeDaemonRevisionsCommand.js +16 -0
- package/dist-es/commands/DescribeDaemonTaskDefinitionCommand.js +16 -0
- package/dist-es/commands/ListDaemonDeploymentsCommand.js +16 -0
- package/dist-es/commands/ListDaemonTaskDefinitionsCommand.js +16 -0
- package/dist-es/commands/ListDaemonsCommand.js +16 -0
- package/dist-es/commands/RegisterDaemonTaskDefinitionCommand.js +16 -0
- package/dist-es/commands/UpdateDaemonCommand.js +16 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +72 -33
- package/dist-es/models/errors.js +32 -8
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/schemas/schemas_0.js +500 -93
- package/dist-es/waiters/index.js +5 -0
- package/dist-es/waiters/waitForDaemonActive.js +40 -0
- package/dist-es/waiters/waitForDaemonDeploymentStopped.js +54 -0
- package/dist-es/waiters/waitForDaemonDeploymentSuccessful.js +99 -0
- package/dist-es/waiters/waitForDaemonTaskDefinitionActive.js +49 -0
- package/dist-es/waiters/waitForDaemonTaskDefinitionDeleted.js +31 -0
- package/dist-types/ECS.d.ts +116 -0
- package/dist-types/ECSClient.d.ts +14 -2
- package/dist-types/commands/CreateDaemonCommand.d.ts +150 -0
- package/dist-types/commands/CreateTaskSetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDaemonCommand.d.ts +121 -0
- package/dist-types/commands/DeleteDaemonTaskDefinitionCommand.d.ts +101 -0
- package/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +1 -0
- package/dist-types/commands/DeleteTaskSetCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +1 -0
- package/dist-types/commands/DescribeContainerInstancesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDaemonCommand.d.ts +148 -0
- package/dist-types/commands/DescribeDaemonDeploymentsCommand.d.ts +229 -0
- package/dist-types/commands/DescribeDaemonRevisionsCommand.d.ts +155 -0
- package/dist-types/commands/DescribeDaemonTaskDefinitionCommand.d.ts +286 -0
- package/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +1 -0
- package/dist-types/commands/DescribeTaskSetsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTasksCommand.d.ts +1 -1
- package/dist-types/commands/GetTaskProtectionCommand.d.ts +1 -1
- package/dist-types/commands/ListDaemonDeploymentsCommand.d.ts +145 -0
- package/dist-types/commands/ListDaemonTaskDefinitionsCommand.d.ts +129 -0
- package/dist-types/commands/ListDaemonsCommand.d.ts +133 -0
- package/dist-types/commands/ListTaskDefinitionsCommand.d.ts +2 -1
- package/dist-types/commands/ListTasksCommand.d.ts +1 -0
- package/dist-types/commands/RegisterContainerInstanceCommand.d.ts +1 -1
- package/dist-types/commands/RegisterDaemonTaskDefinitionCommand.d.ts +277 -0
- package/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/RunTaskCommand.d.ts +1 -1
- package/dist-types/commands/StartTaskCommand.d.ts +1 -1
- package/dist-types/commands/StopTaskCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateContainerAgentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDaemonCommand.d.ts +149 -0
- package/dist-types/commands/UpdateTaskProtectionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTaskSetCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +155 -60
- package/dist-types/models/errors.d.ts +32 -8
- package/dist-types/models/models_0.d.ts +2630 -2613
- package/dist-types/models/models_1.d.ts +1245 -0
- package/dist-types/schemas/schemas_0.d.ts +58 -0
- package/dist-types/ts3.4/ECS.d.ts +251 -0
- package/dist-types/ts3.4/ECSClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/CreateDaemonCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateTaskSetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteDaemonCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteDaemonTaskDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteTaskSetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDaemonCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeDaemonDeploymentsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeDaemonRevisionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeDaemonTaskDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeTaskSetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTasksCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTaskProtectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDaemonDeploymentsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDaemonTaskDefinitionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDaemonsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListTaskDefinitionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/RegisterDaemonTaskDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RegisterTaskDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RunTaskCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartTaskCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopTaskCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDaemonCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateTaskProtectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTaskSetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +92 -40
- package/dist-types/ts3.4/models/errors.d.ts +21 -7
- package/dist-types/ts3.4/models/models_0.d.ts +338 -324
- package/dist-types/ts3.4/models/models_1.d.ts +322 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +58 -0
- package/dist-types/ts3.4/waiters/index.d.ts +5 -0
- package/dist-types/ts3.4/waiters/waitForDaemonActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForDaemonDeploymentStopped.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForDaemonDeploymentSuccessful.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForDaemonTaskDefinitionActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForDaemonTaskDefinitionDeleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +5 -0
- package/dist-types/waiters/waitForDaemonActive.d.ts +14 -0
- package/dist-types/waiters/waitForDaemonDeploymentStopped.d.ts +14 -0
- package/dist-types/waiters/waitForDaemonDeploymentSuccessful.d.ts +14 -0
- package/dist-types/waiters/waitForDaemonTaskDefinitionActive.d.ts +14 -0
- package/dist-types/waiters/waitForDaemonTaskDefinitionDeleted.d.ts +14 -0
- package/package.json +1 -1
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Compatibility,
|
|
3
|
+
Connectivity,
|
|
4
|
+
HealthStatus,
|
|
5
|
+
IpcMode,
|
|
6
|
+
LaunchType,
|
|
7
|
+
ManagedAgentName,
|
|
8
|
+
NetworkMode,
|
|
9
|
+
PidMode,
|
|
10
|
+
PropagateTags,
|
|
11
|
+
TaskField,
|
|
12
|
+
TaskFilesystemType,
|
|
13
|
+
TaskSetField,
|
|
14
|
+
TaskStopCode,
|
|
15
|
+
} from "./enums";
|
|
16
|
+
import {
|
|
17
|
+
Attachment,
|
|
18
|
+
Attribute,
|
|
19
|
+
CapacityProviderStrategyItem,
|
|
20
|
+
ContainerDefinition,
|
|
21
|
+
EBSTagSpecification,
|
|
22
|
+
EnvironmentFile,
|
|
23
|
+
EphemeralStorage,
|
|
24
|
+
Failure,
|
|
25
|
+
InferenceAccelerator,
|
|
26
|
+
KeyValuePair,
|
|
27
|
+
LoadBalancer,
|
|
28
|
+
NetworkBinding,
|
|
29
|
+
NetworkConfiguration,
|
|
30
|
+
PlacementConstraint,
|
|
31
|
+
PlacementStrategy,
|
|
32
|
+
ProxyConfiguration,
|
|
33
|
+
ResourceRequirement,
|
|
34
|
+
RuntimePlatform,
|
|
35
|
+
Scale,
|
|
36
|
+
ServiceRegistry,
|
|
37
|
+
Tag,
|
|
38
|
+
TaskDefinition,
|
|
39
|
+
TaskDefinitionPlacementConstraint,
|
|
40
|
+
TaskSet,
|
|
41
|
+
Volume,
|
|
42
|
+
} from "./models_0";
|
|
43
|
+
export interface ListTaskDefinitionsResponse {
|
|
44
|
+
taskDefinitionArns?: string[] | undefined;
|
|
45
|
+
nextToken?: string | undefined;
|
|
46
|
+
}
|
|
47
|
+
export interface RegisterTaskDefinitionRequest {
|
|
48
|
+
family: string | undefined;
|
|
49
|
+
taskRoleArn?: string | undefined;
|
|
50
|
+
executionRoleArn?: string | undefined;
|
|
51
|
+
networkMode?: NetworkMode | undefined;
|
|
52
|
+
containerDefinitions: ContainerDefinition[] | undefined;
|
|
53
|
+
volumes?: Volume[] | undefined;
|
|
54
|
+
placementConstraints?: TaskDefinitionPlacementConstraint[] | undefined;
|
|
55
|
+
requiresCompatibilities?: Compatibility[] | undefined;
|
|
56
|
+
cpu?: string | undefined;
|
|
57
|
+
memory?: string | undefined;
|
|
58
|
+
tags?: Tag[] | undefined;
|
|
59
|
+
pidMode?: PidMode | undefined;
|
|
60
|
+
ipcMode?: IpcMode | undefined;
|
|
61
|
+
proxyConfiguration?: ProxyConfiguration | undefined;
|
|
62
|
+
inferenceAccelerators?: InferenceAccelerator[] | undefined;
|
|
63
|
+
ephemeralStorage?: EphemeralStorage | undefined;
|
|
64
|
+
runtimePlatform?: RuntimePlatform | undefined;
|
|
65
|
+
enableFaultInjection?: boolean | undefined;
|
|
66
|
+
}
|
|
67
|
+
export interface RegisterTaskDefinitionResponse {
|
|
68
|
+
taskDefinition?: TaskDefinition | undefined;
|
|
69
|
+
tags?: Tag[] | undefined;
|
|
70
|
+
}
|
|
71
|
+
export interface DescribeTasksRequest {
|
|
72
|
+
cluster?: string | undefined;
|
|
73
|
+
tasks: string[] | undefined;
|
|
74
|
+
include?: TaskField[] | undefined;
|
|
75
|
+
}
|
|
76
|
+
export interface ManagedAgent {
|
|
77
|
+
lastStartedAt?: Date | undefined;
|
|
78
|
+
name?: ManagedAgentName | undefined;
|
|
79
|
+
reason?: string | undefined;
|
|
80
|
+
lastStatus?: string | undefined;
|
|
81
|
+
}
|
|
82
|
+
export interface NetworkInterface {
|
|
83
|
+
attachmentId?: string | undefined;
|
|
84
|
+
privateIpv4Address?: string | undefined;
|
|
85
|
+
ipv6Address?: string | undefined;
|
|
86
|
+
}
|
|
87
|
+
export interface Container {
|
|
88
|
+
containerArn?: string | undefined;
|
|
89
|
+
taskArn?: string | undefined;
|
|
90
|
+
name?: string | undefined;
|
|
91
|
+
image?: string | undefined;
|
|
92
|
+
imageDigest?: string | undefined;
|
|
93
|
+
runtimeId?: string | undefined;
|
|
94
|
+
lastStatus?: string | undefined;
|
|
95
|
+
exitCode?: number | undefined;
|
|
96
|
+
reason?: string | undefined;
|
|
97
|
+
networkBindings?: NetworkBinding[] | undefined;
|
|
98
|
+
networkInterfaces?: NetworkInterface[] | undefined;
|
|
99
|
+
healthStatus?: HealthStatus | undefined;
|
|
100
|
+
managedAgents?: ManagedAgent[] | undefined;
|
|
101
|
+
cpu?: string | undefined;
|
|
102
|
+
memory?: string | undefined;
|
|
103
|
+
memoryReservation?: string | undefined;
|
|
104
|
+
gpuIds?: string[] | undefined;
|
|
105
|
+
}
|
|
106
|
+
export interface TaskEphemeralStorage {
|
|
107
|
+
sizeInGiB?: number | undefined;
|
|
108
|
+
kmsKeyId?: string | undefined;
|
|
109
|
+
}
|
|
110
|
+
export interface ContainerOverride {
|
|
111
|
+
name?: string | undefined;
|
|
112
|
+
command?: string[] | undefined;
|
|
113
|
+
environment?: KeyValuePair[] | undefined;
|
|
114
|
+
environmentFiles?: EnvironmentFile[] | undefined;
|
|
115
|
+
cpu?: number | undefined;
|
|
116
|
+
memory?: number | undefined;
|
|
117
|
+
memoryReservation?: number | undefined;
|
|
118
|
+
resourceRequirements?: ResourceRequirement[] | undefined;
|
|
119
|
+
}
|
|
120
|
+
export interface InferenceAcceleratorOverride {
|
|
121
|
+
deviceName?: string | undefined;
|
|
122
|
+
deviceType?: string | undefined;
|
|
123
|
+
}
|
|
124
|
+
export interface TaskOverride {
|
|
125
|
+
containerOverrides?: ContainerOverride[] | undefined;
|
|
126
|
+
cpu?: string | undefined;
|
|
127
|
+
inferenceAcceleratorOverrides?: InferenceAcceleratorOverride[] | undefined;
|
|
128
|
+
executionRoleArn?: string | undefined;
|
|
129
|
+
memory?: string | undefined;
|
|
130
|
+
taskRoleArn?: string | undefined;
|
|
131
|
+
ephemeralStorage?: EphemeralStorage | undefined;
|
|
132
|
+
}
|
|
133
|
+
export interface Task {
|
|
134
|
+
attachments?: Attachment[] | undefined;
|
|
135
|
+
attributes?: Attribute[] | undefined;
|
|
136
|
+
availabilityZone?: string | undefined;
|
|
137
|
+
capacityProviderName?: string | undefined;
|
|
138
|
+
clusterArn?: string | undefined;
|
|
139
|
+
connectivity?: Connectivity | undefined;
|
|
140
|
+
connectivityAt?: Date | undefined;
|
|
141
|
+
containerInstanceArn?: string | undefined;
|
|
142
|
+
containers?: Container[] | undefined;
|
|
143
|
+
cpu?: string | undefined;
|
|
144
|
+
createdAt?: Date | undefined;
|
|
145
|
+
desiredStatus?: string | undefined;
|
|
146
|
+
enableExecuteCommand?: boolean | undefined;
|
|
147
|
+
executionStoppedAt?: Date | undefined;
|
|
148
|
+
group?: string | undefined;
|
|
149
|
+
healthStatus?: HealthStatus | undefined;
|
|
150
|
+
inferenceAccelerators?: InferenceAccelerator[] | undefined;
|
|
151
|
+
lastStatus?: string | undefined;
|
|
152
|
+
launchType?: LaunchType | undefined;
|
|
153
|
+
memory?: string | undefined;
|
|
154
|
+
overrides?: TaskOverride | undefined;
|
|
155
|
+
platformVersion?: string | undefined;
|
|
156
|
+
platformFamily?: string | undefined;
|
|
157
|
+
pullStartedAt?: Date | undefined;
|
|
158
|
+
pullStoppedAt?: Date | undefined;
|
|
159
|
+
startedAt?: Date | undefined;
|
|
160
|
+
startedBy?: string | undefined;
|
|
161
|
+
stopCode?: TaskStopCode | undefined;
|
|
162
|
+
stoppedAt?: Date | undefined;
|
|
163
|
+
stoppedReason?: string | undefined;
|
|
164
|
+
stoppingAt?: Date | undefined;
|
|
165
|
+
tags?: Tag[] | undefined;
|
|
166
|
+
taskArn?: string | undefined;
|
|
167
|
+
taskDefinitionArn?: string | undefined;
|
|
168
|
+
version?: number | undefined;
|
|
169
|
+
ephemeralStorage?: EphemeralStorage | undefined;
|
|
170
|
+
fargateEphemeralStorage?: TaskEphemeralStorage | undefined;
|
|
171
|
+
}
|
|
172
|
+
export interface DescribeTasksResponse {
|
|
173
|
+
tasks?: Task[] | undefined;
|
|
174
|
+
failures?: Failure[] | undefined;
|
|
175
|
+
}
|
|
176
|
+
export interface GetTaskProtectionRequest {
|
|
177
|
+
cluster: string | undefined;
|
|
178
|
+
tasks?: string[] | undefined;
|
|
179
|
+
}
|
|
180
|
+
export interface ProtectedTask {
|
|
181
|
+
taskArn?: string | undefined;
|
|
182
|
+
protectionEnabled?: boolean | undefined;
|
|
183
|
+
expirationDate?: Date | undefined;
|
|
184
|
+
}
|
|
185
|
+
export interface GetTaskProtectionResponse {
|
|
186
|
+
protectedTasks?: ProtectedTask[] | undefined;
|
|
187
|
+
failures?: Failure[] | undefined;
|
|
188
|
+
}
|
|
189
|
+
export interface TaskManagedEBSVolumeTerminationPolicy {
|
|
190
|
+
deleteOnTermination: boolean | undefined;
|
|
191
|
+
}
|
|
192
|
+
export interface TaskManagedEBSVolumeConfiguration {
|
|
193
|
+
encrypted?: boolean | undefined;
|
|
194
|
+
kmsKeyId?: string | undefined;
|
|
195
|
+
volumeType?: string | undefined;
|
|
196
|
+
sizeInGiB?: number | undefined;
|
|
197
|
+
snapshotId?: string | undefined;
|
|
198
|
+
volumeInitializationRate?: number | undefined;
|
|
199
|
+
iops?: number | undefined;
|
|
200
|
+
throughput?: number | undefined;
|
|
201
|
+
tagSpecifications?: EBSTagSpecification[] | undefined;
|
|
202
|
+
roleArn: string | undefined;
|
|
203
|
+
terminationPolicy?: TaskManagedEBSVolumeTerminationPolicy | undefined;
|
|
204
|
+
filesystemType?: TaskFilesystemType | undefined;
|
|
205
|
+
}
|
|
206
|
+
export interface TaskVolumeConfiguration {
|
|
207
|
+
name: string | undefined;
|
|
208
|
+
managedEBSVolume?: TaskManagedEBSVolumeConfiguration | undefined;
|
|
209
|
+
}
|
|
210
|
+
export interface RunTaskRequest {
|
|
211
|
+
capacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
|
|
212
|
+
cluster?: string | undefined;
|
|
213
|
+
count?: number | undefined;
|
|
214
|
+
enableECSManagedTags?: boolean | undefined;
|
|
215
|
+
enableExecuteCommand?: boolean | undefined;
|
|
216
|
+
group?: string | undefined;
|
|
217
|
+
launchType?: LaunchType | undefined;
|
|
218
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
219
|
+
overrides?: TaskOverride | undefined;
|
|
220
|
+
placementConstraints?: PlacementConstraint[] | undefined;
|
|
221
|
+
placementStrategy?: PlacementStrategy[] | undefined;
|
|
222
|
+
platformVersion?: string | undefined;
|
|
223
|
+
propagateTags?: PropagateTags | undefined;
|
|
224
|
+
referenceId?: string | undefined;
|
|
225
|
+
startedBy?: string | undefined;
|
|
226
|
+
tags?: Tag[] | undefined;
|
|
227
|
+
taskDefinition: string | undefined;
|
|
228
|
+
clientToken?: string | undefined;
|
|
229
|
+
volumeConfigurations?: TaskVolumeConfiguration[] | undefined;
|
|
230
|
+
}
|
|
231
|
+
export interface RunTaskResponse {
|
|
232
|
+
tasks?: Task[] | undefined;
|
|
233
|
+
failures?: Failure[] | undefined;
|
|
234
|
+
}
|
|
235
|
+
export interface StartTaskRequest {
|
|
236
|
+
cluster?: string | undefined;
|
|
237
|
+
containerInstances: string[] | undefined;
|
|
238
|
+
enableECSManagedTags?: boolean | undefined;
|
|
239
|
+
enableExecuteCommand?: boolean | undefined;
|
|
240
|
+
group?: string | undefined;
|
|
241
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
242
|
+
overrides?: TaskOverride | undefined;
|
|
243
|
+
propagateTags?: PropagateTags | undefined;
|
|
244
|
+
referenceId?: string | undefined;
|
|
245
|
+
startedBy?: string | undefined;
|
|
246
|
+
tags?: Tag[] | undefined;
|
|
247
|
+
taskDefinition: string | undefined;
|
|
248
|
+
volumeConfigurations?: TaskVolumeConfiguration[] | undefined;
|
|
249
|
+
}
|
|
250
|
+
export interface StartTaskResponse {
|
|
251
|
+
tasks?: Task[] | undefined;
|
|
252
|
+
failures?: Failure[] | undefined;
|
|
253
|
+
}
|
|
254
|
+
export interface StopTaskRequest {
|
|
255
|
+
cluster?: string | undefined;
|
|
256
|
+
task: string | undefined;
|
|
257
|
+
reason?: string | undefined;
|
|
258
|
+
}
|
|
259
|
+
export interface StopTaskResponse {
|
|
260
|
+
task?: Task | undefined;
|
|
261
|
+
}
|
|
262
|
+
export interface UpdateTaskProtectionRequest {
|
|
263
|
+
cluster: string | undefined;
|
|
264
|
+
tasks: string[] | undefined;
|
|
265
|
+
protectionEnabled: boolean | undefined;
|
|
266
|
+
expiresInMinutes?: number | undefined;
|
|
267
|
+
}
|
|
268
|
+
export interface UpdateTaskProtectionResponse {
|
|
269
|
+
protectedTasks?: ProtectedTask[] | undefined;
|
|
270
|
+
failures?: Failure[] | undefined;
|
|
271
|
+
}
|
|
272
|
+
export interface CreateTaskSetRequest {
|
|
273
|
+
service: string | undefined;
|
|
274
|
+
cluster: string | undefined;
|
|
275
|
+
externalId?: string | undefined;
|
|
276
|
+
taskDefinition: string | undefined;
|
|
277
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
278
|
+
loadBalancers?: LoadBalancer[] | undefined;
|
|
279
|
+
serviceRegistries?: ServiceRegistry[] | undefined;
|
|
280
|
+
launchType?: LaunchType | undefined;
|
|
281
|
+
capacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
|
|
282
|
+
platformVersion?: string | undefined;
|
|
283
|
+
scale?: Scale | undefined;
|
|
284
|
+
clientToken?: string | undefined;
|
|
285
|
+
tags?: Tag[] | undefined;
|
|
286
|
+
}
|
|
287
|
+
export interface CreateTaskSetResponse {
|
|
288
|
+
taskSet?: TaskSet | undefined;
|
|
289
|
+
}
|
|
290
|
+
export interface DeleteTaskSetRequest {
|
|
291
|
+
cluster: string | undefined;
|
|
292
|
+
service: string | undefined;
|
|
293
|
+
taskSet: string | undefined;
|
|
294
|
+
force?: boolean | undefined;
|
|
295
|
+
}
|
|
296
|
+
export interface DeleteTaskSetResponse {
|
|
297
|
+
taskSet?: TaskSet | undefined;
|
|
298
|
+
}
|
|
299
|
+
export interface DescribeTaskSetsRequest {
|
|
300
|
+
cluster: string | undefined;
|
|
301
|
+
service: string | undefined;
|
|
302
|
+
taskSets?: string[] | undefined;
|
|
303
|
+
include?: TaskSetField[] | undefined;
|
|
304
|
+
}
|
|
305
|
+
export interface DescribeTaskSetsResponse {
|
|
306
|
+
taskSets?: TaskSet[] | undefined;
|
|
307
|
+
failures?: Failure[] | undefined;
|
|
308
|
+
}
|
|
309
|
+
export interface UpdateTaskSetRequest {
|
|
310
|
+
cluster: string | undefined;
|
|
311
|
+
service: string | undefined;
|
|
312
|
+
taskSet: string | undefined;
|
|
313
|
+
scale: Scale | undefined;
|
|
314
|
+
}
|
|
315
|
+
export interface UpdateTaskSetResponse {
|
|
316
|
+
taskSet?: TaskSet | undefined;
|
|
317
|
+
}
|
|
318
|
+
export interface UntagResourceRequest {
|
|
319
|
+
resourceArn: string | undefined;
|
|
320
|
+
tagKeys: string[] | undefined;
|
|
321
|
+
}
|
|
322
|
+
export interface UntagResourceResponse {}
|
|
@@ -15,6 +15,8 @@ export declare var ClusterContainsServicesException$: StaticErrorSchema;
|
|
|
15
15
|
export declare var ClusterContainsTasksException$: StaticErrorSchema;
|
|
16
16
|
export declare var ClusterNotFoundException$: StaticErrorSchema;
|
|
17
17
|
export declare var ConflictException$: StaticErrorSchema;
|
|
18
|
+
export declare var DaemonNotActiveException$: StaticErrorSchema;
|
|
19
|
+
export declare var DaemonNotFoundException$: StaticErrorSchema;
|
|
18
20
|
export declare var InvalidParameterException$: StaticErrorSchema;
|
|
19
21
|
export declare var LimitExceededException$: StaticErrorSchema;
|
|
20
22
|
export declare var MissingVersionException$: StaticErrorSchema;
|
|
@@ -66,6 +68,8 @@ export declare var CreateCapacityProviderRequest$: StaticStructureSchema;
|
|
|
66
68
|
export declare var CreateCapacityProviderResponse$: StaticStructureSchema;
|
|
67
69
|
export declare var CreateClusterRequest$: StaticStructureSchema;
|
|
68
70
|
export declare var CreateClusterResponse$: StaticStructureSchema;
|
|
71
|
+
export declare var CreateDaemonRequest$: StaticStructureSchema;
|
|
72
|
+
export declare var CreateDaemonResponse$: StaticStructureSchema;
|
|
69
73
|
export declare var CreatedAt$: StaticStructureSchema;
|
|
70
74
|
export declare var CreateExpressGatewayServiceRequest$: StaticStructureSchema;
|
|
71
75
|
export declare var CreateExpressGatewayServiceResponse$: StaticStructureSchema;
|
|
@@ -74,6 +78,26 @@ export declare var CreateServiceRequest$: StaticStructureSchema;
|
|
|
74
78
|
export declare var CreateServiceResponse$: StaticStructureSchema;
|
|
75
79
|
export declare var CreateTaskSetRequest$: StaticStructureSchema;
|
|
76
80
|
export declare var CreateTaskSetResponse$: StaticStructureSchema;
|
|
81
|
+
export declare var DaemonAlarmConfiguration$: StaticStructureSchema;
|
|
82
|
+
export declare var DaemonCapacityProvider$: StaticStructureSchema;
|
|
83
|
+
export declare var DaemonCircuitBreaker$: StaticStructureSchema;
|
|
84
|
+
export declare var DaemonContainerDefinition$: StaticStructureSchema;
|
|
85
|
+
export declare var DaemonContainerImage$: StaticStructureSchema;
|
|
86
|
+
export declare var DaemonDeployment$: StaticStructureSchema;
|
|
87
|
+
export declare var DaemonDeploymentAlarms$: StaticStructureSchema;
|
|
88
|
+
export declare var DaemonDeploymentCapacityProvider$: StaticStructureSchema;
|
|
89
|
+
export declare var DaemonDeploymentConfiguration$: StaticStructureSchema;
|
|
90
|
+
export declare var DaemonDeploymentRevisionDetail$: StaticStructureSchema;
|
|
91
|
+
export declare var DaemonDeploymentSummary$: StaticStructureSchema;
|
|
92
|
+
export declare var DaemonDetail$: StaticStructureSchema;
|
|
93
|
+
export declare var DaemonLinuxParameters$: StaticStructureSchema;
|
|
94
|
+
export declare var DaemonRevision$: StaticStructureSchema;
|
|
95
|
+
export declare var DaemonRevisionDetail$: StaticStructureSchema;
|
|
96
|
+
export declare var DaemonRollback$: StaticStructureSchema;
|
|
97
|
+
export declare var DaemonSummary$: StaticStructureSchema;
|
|
98
|
+
export declare var DaemonTaskDefinition$: StaticStructureSchema;
|
|
99
|
+
export declare var DaemonTaskDefinitionSummary$: StaticStructureSchema;
|
|
100
|
+
export declare var DaemonVolume$: StaticStructureSchema;
|
|
77
101
|
export declare var DeleteAccountSettingRequest$: StaticStructureSchema;
|
|
78
102
|
export declare var DeleteAccountSettingResponse$: StaticStructureSchema;
|
|
79
103
|
export declare var DeleteAttributesRequest$: StaticStructureSchema;
|
|
@@ -82,6 +106,10 @@ export declare var DeleteCapacityProviderRequest$: StaticStructureSchema;
|
|
|
82
106
|
export declare var DeleteCapacityProviderResponse$: StaticStructureSchema;
|
|
83
107
|
export declare var DeleteClusterRequest$: StaticStructureSchema;
|
|
84
108
|
export declare var DeleteClusterResponse$: StaticStructureSchema;
|
|
109
|
+
export declare var DeleteDaemonRequest$: StaticStructureSchema;
|
|
110
|
+
export declare var DeleteDaemonResponse$: StaticStructureSchema;
|
|
111
|
+
export declare var DeleteDaemonTaskDefinitionRequest$: StaticStructureSchema;
|
|
112
|
+
export declare var DeleteDaemonTaskDefinitionResponse$: StaticStructureSchema;
|
|
85
113
|
export declare var DeleteExpressGatewayServiceRequest$: StaticStructureSchema;
|
|
86
114
|
export declare var DeleteExpressGatewayServiceResponse$: StaticStructureSchema;
|
|
87
115
|
export declare var DeleteServiceRequest$: StaticStructureSchema;
|
|
@@ -107,6 +135,14 @@ export declare var DescribeClustersRequest$: StaticStructureSchema;
|
|
|
107
135
|
export declare var DescribeClustersResponse$: StaticStructureSchema;
|
|
108
136
|
export declare var DescribeContainerInstancesRequest$: StaticStructureSchema;
|
|
109
137
|
export declare var DescribeContainerInstancesResponse$: StaticStructureSchema;
|
|
138
|
+
export declare var DescribeDaemonDeploymentsRequest$: StaticStructureSchema;
|
|
139
|
+
export declare var DescribeDaemonDeploymentsResponse$: StaticStructureSchema;
|
|
140
|
+
export declare var DescribeDaemonRequest$: StaticStructureSchema;
|
|
141
|
+
export declare var DescribeDaemonResponse$: StaticStructureSchema;
|
|
142
|
+
export declare var DescribeDaemonRevisionsRequest$: StaticStructureSchema;
|
|
143
|
+
export declare var DescribeDaemonRevisionsResponse$: StaticStructureSchema;
|
|
144
|
+
export declare var DescribeDaemonTaskDefinitionRequest$: StaticStructureSchema;
|
|
145
|
+
export declare var DescribeDaemonTaskDefinitionResponse$: StaticStructureSchema;
|
|
110
146
|
export declare var DescribeExpressGatewayServiceRequest$: StaticStructureSchema;
|
|
111
147
|
export declare var DescribeExpressGatewayServiceResponse$: StaticStructureSchema;
|
|
112
148
|
export declare var DescribeServiceDeploymentsRequest$: StaticStructureSchema;
|
|
@@ -172,6 +208,12 @@ export declare var ListClustersRequest$: StaticStructureSchema;
|
|
|
172
208
|
export declare var ListClustersResponse$: StaticStructureSchema;
|
|
173
209
|
export declare var ListContainerInstancesRequest$: StaticStructureSchema;
|
|
174
210
|
export declare var ListContainerInstancesResponse$: StaticStructureSchema;
|
|
211
|
+
export declare var ListDaemonDeploymentsRequest$: StaticStructureSchema;
|
|
212
|
+
export declare var ListDaemonDeploymentsResponse$: StaticStructureSchema;
|
|
213
|
+
export declare var ListDaemonsRequest$: StaticStructureSchema;
|
|
214
|
+
export declare var ListDaemonsResponse$: StaticStructureSchema;
|
|
215
|
+
export declare var ListDaemonTaskDefinitionsRequest$: StaticStructureSchema;
|
|
216
|
+
export declare var ListDaemonTaskDefinitionsResponse$: StaticStructureSchema;
|
|
175
217
|
export declare var ListServiceDeploymentsRequest$: StaticStructureSchema;
|
|
176
218
|
export declare var ListServiceDeploymentsResponse$: StaticStructureSchema;
|
|
177
219
|
export declare var ListServicesByNamespaceRequest$: StaticStructureSchema;
|
|
@@ -232,6 +274,8 @@ export declare var PutClusterCapacityProvidersRequest$: StaticStructureSchema;
|
|
|
232
274
|
export declare var PutClusterCapacityProvidersResponse$: StaticStructureSchema;
|
|
233
275
|
export declare var RegisterContainerInstanceRequest$: StaticStructureSchema;
|
|
234
276
|
export declare var RegisterContainerInstanceResponse$: StaticStructureSchema;
|
|
277
|
+
export declare var RegisterDaemonTaskDefinitionRequest$: StaticStructureSchema;
|
|
278
|
+
export declare var RegisterDaemonTaskDefinitionResponse$: StaticStructureSchema;
|
|
235
279
|
export declare var RegisterTaskDefinitionRequest$: StaticStructureSchema;
|
|
236
280
|
export declare var RegisterTaskDefinitionResponse$: StaticStructureSchema;
|
|
237
281
|
export declare var RepositoryCredentials$: StaticStructureSchema;
|
|
@@ -310,6 +354,8 @@ export declare var UpdateContainerAgentRequest$: StaticStructureSchema;
|
|
|
310
354
|
export declare var UpdateContainerAgentResponse$: StaticStructureSchema;
|
|
311
355
|
export declare var UpdateContainerInstancesStateRequest$: StaticStructureSchema;
|
|
312
356
|
export declare var UpdateContainerInstancesStateResponse$: StaticStructureSchema;
|
|
357
|
+
export declare var UpdateDaemonRequest$: StaticStructureSchema;
|
|
358
|
+
export declare var UpdateDaemonResponse$: StaticStructureSchema;
|
|
313
359
|
export declare var UpdatedExpressGatewayService$: StaticStructureSchema;
|
|
314
360
|
export declare var UpdateExpressGatewayServiceRequest$: StaticStructureSchema;
|
|
315
361
|
export declare var UpdateExpressGatewayServiceResponse$: StaticStructureSchema;
|
|
@@ -329,6 +375,7 @@ export declare var VolumeFrom$: StaticStructureSchema;
|
|
|
329
375
|
export declare var VpcLatticeConfiguration$: StaticStructureSchema;
|
|
330
376
|
export declare var CreateCapacityProvider$: StaticOperationSchema;
|
|
331
377
|
export declare var CreateCluster$: StaticOperationSchema;
|
|
378
|
+
export declare var CreateDaemon$: StaticOperationSchema;
|
|
332
379
|
export declare var CreateExpressGatewayService$: StaticOperationSchema;
|
|
333
380
|
export declare var CreateService$: StaticOperationSchema;
|
|
334
381
|
export declare var CreateTaskSet$: StaticOperationSchema;
|
|
@@ -336,6 +383,8 @@ export declare var DeleteAccountSetting$: StaticOperationSchema;
|
|
|
336
383
|
export declare var DeleteAttributes$: StaticOperationSchema;
|
|
337
384
|
export declare var DeleteCapacityProvider$: StaticOperationSchema;
|
|
338
385
|
export declare var DeleteCluster$: StaticOperationSchema;
|
|
386
|
+
export declare var DeleteDaemon$: StaticOperationSchema;
|
|
387
|
+
export declare var DeleteDaemonTaskDefinition$: StaticOperationSchema;
|
|
339
388
|
export declare var DeleteExpressGatewayService$: StaticOperationSchema;
|
|
340
389
|
export declare var DeleteService$: StaticOperationSchema;
|
|
341
390
|
export declare var DeleteTaskDefinitions$: StaticOperationSchema;
|
|
@@ -345,6 +394,10 @@ export declare var DeregisterTaskDefinition$: StaticOperationSchema;
|
|
|
345
394
|
export declare var DescribeCapacityProviders$: StaticOperationSchema;
|
|
346
395
|
export declare var DescribeClusters$: StaticOperationSchema;
|
|
347
396
|
export declare var DescribeContainerInstances$: StaticOperationSchema;
|
|
397
|
+
export declare var DescribeDaemon$: StaticOperationSchema;
|
|
398
|
+
export declare var DescribeDaemonDeployments$: StaticOperationSchema;
|
|
399
|
+
export declare var DescribeDaemonRevisions$: StaticOperationSchema;
|
|
400
|
+
export declare var DescribeDaemonTaskDefinition$: StaticOperationSchema;
|
|
348
401
|
export declare var DescribeExpressGatewayService$: StaticOperationSchema;
|
|
349
402
|
export declare var DescribeServiceDeployments$: StaticOperationSchema;
|
|
350
403
|
export declare var DescribeServiceRevisions$: StaticOperationSchema;
|
|
@@ -359,6 +412,9 @@ export declare var ListAccountSettings$: StaticOperationSchema;
|
|
|
359
412
|
export declare var ListAttributes$: StaticOperationSchema;
|
|
360
413
|
export declare var ListClusters$: StaticOperationSchema;
|
|
361
414
|
export declare var ListContainerInstances$: StaticOperationSchema;
|
|
415
|
+
export declare var ListDaemonDeployments$: StaticOperationSchema;
|
|
416
|
+
export declare var ListDaemons$: StaticOperationSchema;
|
|
417
|
+
export declare var ListDaemonTaskDefinitions$: StaticOperationSchema;
|
|
362
418
|
export declare var ListServiceDeployments$: StaticOperationSchema;
|
|
363
419
|
export declare var ListServices$: StaticOperationSchema;
|
|
364
420
|
export declare var ListServicesByNamespace$: StaticOperationSchema;
|
|
@@ -371,6 +427,7 @@ export declare var PutAccountSettingDefault$: StaticOperationSchema;
|
|
|
371
427
|
export declare var PutAttributes$: StaticOperationSchema;
|
|
372
428
|
export declare var PutClusterCapacityProviders$: StaticOperationSchema;
|
|
373
429
|
export declare var RegisterContainerInstance$: StaticOperationSchema;
|
|
430
|
+
export declare var RegisterDaemonTaskDefinition$: StaticOperationSchema;
|
|
374
431
|
export declare var RegisterTaskDefinition$: StaticOperationSchema;
|
|
375
432
|
export declare var RunTask$: StaticOperationSchema;
|
|
376
433
|
export declare var StartTask$: StaticOperationSchema;
|
|
@@ -386,6 +443,7 @@ export declare var UpdateCluster$: StaticOperationSchema;
|
|
|
386
443
|
export declare var UpdateClusterSettings$: StaticOperationSchema;
|
|
387
444
|
export declare var UpdateContainerAgent$: StaticOperationSchema;
|
|
388
445
|
export declare var UpdateContainerInstancesState$: StaticOperationSchema;
|
|
446
|
+
export declare var UpdateDaemon$: StaticOperationSchema;
|
|
389
447
|
export declare var UpdateExpressGatewayService$: StaticOperationSchema;
|
|
390
448
|
export declare var UpdateService$: StaticOperationSchema;
|
|
391
449
|
export declare var UpdateServicePrimaryTaskSet$: StaticOperationSchema;
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
export * from "./waitForDaemonActive";
|
|
2
|
+
export * from "./waitForDaemonDeploymentSuccessful";
|
|
3
|
+
export * from "./waitForDaemonDeploymentStopped";
|
|
4
|
+
export * from "./waitForDaemonTaskDefinitionActive";
|
|
5
|
+
export * from "./waitForDaemonTaskDefinitionDeleted";
|
|
1
6
|
export * from "./waitForServicesInactive";
|
|
2
7
|
export * from "./waitForServicesStable";
|
|
3
8
|
export * from "./waitForTasksRunning";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { DescribeDaemonCommandInput } from "../commands/DescribeDaemonCommand";
|
|
3
|
+
import { ECSClient } from "../ECSClient";
|
|
4
|
+
export declare const waitForDaemonActive: (
|
|
5
|
+
params: WaiterConfiguration<ECSClient>,
|
|
6
|
+
input: DescribeDaemonCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilDaemonActive: (
|
|
9
|
+
params: WaiterConfiguration<ECSClient>,
|
|
10
|
+
input: DescribeDaemonCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { DescribeDaemonDeploymentsCommandInput } from "../commands/DescribeDaemonDeploymentsCommand";
|
|
3
|
+
import { ECSClient } from "../ECSClient";
|
|
4
|
+
export declare const waitForDaemonDeploymentStopped: (
|
|
5
|
+
params: WaiterConfiguration<ECSClient>,
|
|
6
|
+
input: DescribeDaemonDeploymentsCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilDaemonDeploymentStopped: (
|
|
9
|
+
params: WaiterConfiguration<ECSClient>,
|
|
10
|
+
input: DescribeDaemonDeploymentsCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { DescribeDaemonDeploymentsCommandInput } from "../commands/DescribeDaemonDeploymentsCommand";
|
|
3
|
+
import { ECSClient } from "../ECSClient";
|
|
4
|
+
export declare const waitForDaemonDeploymentSuccessful: (
|
|
5
|
+
params: WaiterConfiguration<ECSClient>,
|
|
6
|
+
input: DescribeDaemonDeploymentsCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilDaemonDeploymentSuccessful: (
|
|
9
|
+
params: WaiterConfiguration<ECSClient>,
|
|
10
|
+
input: DescribeDaemonDeploymentsCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { DescribeDaemonTaskDefinitionCommandInput } from "../commands/DescribeDaemonTaskDefinitionCommand";
|
|
3
|
+
import { ECSClient } from "../ECSClient";
|
|
4
|
+
export declare const waitForDaemonTaskDefinitionActive: (
|
|
5
|
+
params: WaiterConfiguration<ECSClient>,
|
|
6
|
+
input: DescribeDaemonTaskDefinitionCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilDaemonTaskDefinitionActive: (
|
|
9
|
+
params: WaiterConfiguration<ECSClient>,
|
|
10
|
+
input: DescribeDaemonTaskDefinitionCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { DescribeDaemonTaskDefinitionCommandInput } from "../commands/DescribeDaemonTaskDefinitionCommand";
|
|
3
|
+
import { ECSClient } from "../ECSClient";
|
|
4
|
+
export declare const waitForDaemonTaskDefinitionDeleted: (
|
|
5
|
+
params: WaiterConfiguration<ECSClient>,
|
|
6
|
+
input: DescribeDaemonTaskDefinitionCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilDaemonTaskDefinitionDeleted: (
|
|
9
|
+
params: WaiterConfiguration<ECSClient>,
|
|
10
|
+
input: DescribeDaemonTaskDefinitionCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
export * from "./waitForDaemonActive";
|
|
2
|
+
export * from "./waitForDaemonDeploymentSuccessful";
|
|
3
|
+
export * from "./waitForDaemonDeploymentStopped";
|
|
4
|
+
export * from "./waitForDaemonTaskDefinitionActive";
|
|
5
|
+
export * from "./waitForDaemonTaskDefinitionDeleted";
|
|
1
6
|
export * from "./waitForServicesInactive";
|
|
2
7
|
export * from "./waitForServicesStable";
|
|
3
8
|
export * from "./waitForTasksRunning";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type DescribeDaemonCommandInput } from "../commands/DescribeDaemonCommand";
|
|
3
|
+
import type { ECSClient } from "../ECSClient";
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @deprecated Use waitUntilDaemonActive instead. waitForDaemonActive does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForDaemonActive: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to DescribeDaemonCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilDaemonActive: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type DescribeDaemonDeploymentsCommandInput } from "../commands/DescribeDaemonDeploymentsCommand";
|
|
3
|
+
import type { ECSClient } from "../ECSClient";
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @deprecated Use waitUntilDaemonDeploymentStopped instead. waitForDaemonDeploymentStopped does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForDaemonDeploymentStopped: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonDeploymentsCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to DescribeDaemonDeploymentsCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilDaemonDeploymentStopped: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonDeploymentsCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type DescribeDaemonDeploymentsCommandInput } from "../commands/DescribeDaemonDeploymentsCommand";
|
|
3
|
+
import type { ECSClient } from "../ECSClient";
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @deprecated Use waitUntilDaemonDeploymentSuccessful instead. waitForDaemonDeploymentSuccessful does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForDaemonDeploymentSuccessful: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonDeploymentsCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to DescribeDaemonDeploymentsCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilDaemonDeploymentSuccessful: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonDeploymentsCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type DescribeDaemonTaskDefinitionCommandInput } from "../commands/DescribeDaemonTaskDefinitionCommand";
|
|
3
|
+
import type { ECSClient } from "../ECSClient";
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @deprecated Use waitUntilDaemonTaskDefinitionActive instead. waitForDaemonTaskDefinitionActive does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForDaemonTaskDefinitionActive: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonTaskDefinitionCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to DescribeDaemonTaskDefinitionCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilDaemonTaskDefinitionActive: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonTaskDefinitionCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type DescribeDaemonTaskDefinitionCommandInput } from "../commands/DescribeDaemonTaskDefinitionCommand";
|
|
3
|
+
import type { ECSClient } from "../ECSClient";
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @deprecated Use waitUntilDaemonTaskDefinitionDeleted instead. waitForDaemonTaskDefinitionDeleted does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForDaemonTaskDefinitionDeleted: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonTaskDefinitionCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to DescribeDaemonTaskDefinitionCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilDaemonTaskDefinitionDeleted: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonTaskDefinitionCommandInput) => Promise<WaiterResult>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ecs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1022.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ecs",
|