@aws-sdk/client-ecs 3.1020.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 +6 -6
|
@@ -11,6 +11,8 @@ export declare var ClusterContainsServicesException$: StaticErrorSchema;
|
|
|
11
11
|
export declare var ClusterContainsTasksException$: StaticErrorSchema;
|
|
12
12
|
export declare var ClusterNotFoundException$: StaticErrorSchema;
|
|
13
13
|
export declare var ConflictException$: StaticErrorSchema;
|
|
14
|
+
export declare var DaemonNotActiveException$: StaticErrorSchema;
|
|
15
|
+
export declare var DaemonNotFoundException$: StaticErrorSchema;
|
|
14
16
|
export declare var InvalidParameterException$: StaticErrorSchema;
|
|
15
17
|
export declare var LimitExceededException$: StaticErrorSchema;
|
|
16
18
|
export declare var MissingVersionException$: StaticErrorSchema;
|
|
@@ -67,6 +69,8 @@ export declare var CreateCapacityProviderRequest$: StaticStructureSchema;
|
|
|
67
69
|
export declare var CreateCapacityProviderResponse$: StaticStructureSchema;
|
|
68
70
|
export declare var CreateClusterRequest$: StaticStructureSchema;
|
|
69
71
|
export declare var CreateClusterResponse$: StaticStructureSchema;
|
|
72
|
+
export declare var CreateDaemonRequest$: StaticStructureSchema;
|
|
73
|
+
export declare var CreateDaemonResponse$: StaticStructureSchema;
|
|
70
74
|
export declare var CreatedAt$: StaticStructureSchema;
|
|
71
75
|
export declare var CreateExpressGatewayServiceRequest$: StaticStructureSchema;
|
|
72
76
|
export declare var CreateExpressGatewayServiceResponse$: StaticStructureSchema;
|
|
@@ -75,6 +79,26 @@ export declare var CreateServiceRequest$: StaticStructureSchema;
|
|
|
75
79
|
export declare var CreateServiceResponse$: StaticStructureSchema;
|
|
76
80
|
export declare var CreateTaskSetRequest$: StaticStructureSchema;
|
|
77
81
|
export declare var CreateTaskSetResponse$: StaticStructureSchema;
|
|
82
|
+
export declare var DaemonAlarmConfiguration$: StaticStructureSchema;
|
|
83
|
+
export declare var DaemonCapacityProvider$: StaticStructureSchema;
|
|
84
|
+
export declare var DaemonCircuitBreaker$: StaticStructureSchema;
|
|
85
|
+
export declare var DaemonContainerDefinition$: StaticStructureSchema;
|
|
86
|
+
export declare var DaemonContainerImage$: StaticStructureSchema;
|
|
87
|
+
export declare var DaemonDeployment$: StaticStructureSchema;
|
|
88
|
+
export declare var DaemonDeploymentAlarms$: StaticStructureSchema;
|
|
89
|
+
export declare var DaemonDeploymentCapacityProvider$: StaticStructureSchema;
|
|
90
|
+
export declare var DaemonDeploymentConfiguration$: StaticStructureSchema;
|
|
91
|
+
export declare var DaemonDeploymentRevisionDetail$: StaticStructureSchema;
|
|
92
|
+
export declare var DaemonDeploymentSummary$: StaticStructureSchema;
|
|
93
|
+
export declare var DaemonDetail$: StaticStructureSchema;
|
|
94
|
+
export declare var DaemonLinuxParameters$: StaticStructureSchema;
|
|
95
|
+
export declare var DaemonRevision$: StaticStructureSchema;
|
|
96
|
+
export declare var DaemonRevisionDetail$: StaticStructureSchema;
|
|
97
|
+
export declare var DaemonRollback$: StaticStructureSchema;
|
|
98
|
+
export declare var DaemonSummary$: StaticStructureSchema;
|
|
99
|
+
export declare var DaemonTaskDefinition$: StaticStructureSchema;
|
|
100
|
+
export declare var DaemonTaskDefinitionSummary$: StaticStructureSchema;
|
|
101
|
+
export declare var DaemonVolume$: StaticStructureSchema;
|
|
78
102
|
export declare var DeleteAccountSettingRequest$: StaticStructureSchema;
|
|
79
103
|
export declare var DeleteAccountSettingResponse$: StaticStructureSchema;
|
|
80
104
|
export declare var DeleteAttributesRequest$: StaticStructureSchema;
|
|
@@ -83,6 +107,10 @@ export declare var DeleteCapacityProviderRequest$: StaticStructureSchema;
|
|
|
83
107
|
export declare var DeleteCapacityProviderResponse$: StaticStructureSchema;
|
|
84
108
|
export declare var DeleteClusterRequest$: StaticStructureSchema;
|
|
85
109
|
export declare var DeleteClusterResponse$: StaticStructureSchema;
|
|
110
|
+
export declare var DeleteDaemonRequest$: StaticStructureSchema;
|
|
111
|
+
export declare var DeleteDaemonResponse$: StaticStructureSchema;
|
|
112
|
+
export declare var DeleteDaemonTaskDefinitionRequest$: StaticStructureSchema;
|
|
113
|
+
export declare var DeleteDaemonTaskDefinitionResponse$: StaticStructureSchema;
|
|
86
114
|
export declare var DeleteExpressGatewayServiceRequest$: StaticStructureSchema;
|
|
87
115
|
export declare var DeleteExpressGatewayServiceResponse$: StaticStructureSchema;
|
|
88
116
|
export declare var DeleteServiceRequest$: StaticStructureSchema;
|
|
@@ -108,6 +136,14 @@ export declare var DescribeClustersRequest$: StaticStructureSchema;
|
|
|
108
136
|
export declare var DescribeClustersResponse$: StaticStructureSchema;
|
|
109
137
|
export declare var DescribeContainerInstancesRequest$: StaticStructureSchema;
|
|
110
138
|
export declare var DescribeContainerInstancesResponse$: StaticStructureSchema;
|
|
139
|
+
export declare var DescribeDaemonDeploymentsRequest$: StaticStructureSchema;
|
|
140
|
+
export declare var DescribeDaemonDeploymentsResponse$: StaticStructureSchema;
|
|
141
|
+
export declare var DescribeDaemonRequest$: StaticStructureSchema;
|
|
142
|
+
export declare var DescribeDaemonResponse$: StaticStructureSchema;
|
|
143
|
+
export declare var DescribeDaemonRevisionsRequest$: StaticStructureSchema;
|
|
144
|
+
export declare var DescribeDaemonRevisionsResponse$: StaticStructureSchema;
|
|
145
|
+
export declare var DescribeDaemonTaskDefinitionRequest$: StaticStructureSchema;
|
|
146
|
+
export declare var DescribeDaemonTaskDefinitionResponse$: StaticStructureSchema;
|
|
111
147
|
export declare var DescribeExpressGatewayServiceRequest$: StaticStructureSchema;
|
|
112
148
|
export declare var DescribeExpressGatewayServiceResponse$: StaticStructureSchema;
|
|
113
149
|
export declare var DescribeServiceDeploymentsRequest$: StaticStructureSchema;
|
|
@@ -173,6 +209,12 @@ export declare var ListClustersRequest$: StaticStructureSchema;
|
|
|
173
209
|
export declare var ListClustersResponse$: StaticStructureSchema;
|
|
174
210
|
export declare var ListContainerInstancesRequest$: StaticStructureSchema;
|
|
175
211
|
export declare var ListContainerInstancesResponse$: StaticStructureSchema;
|
|
212
|
+
export declare var ListDaemonDeploymentsRequest$: StaticStructureSchema;
|
|
213
|
+
export declare var ListDaemonDeploymentsResponse$: StaticStructureSchema;
|
|
214
|
+
export declare var ListDaemonsRequest$: StaticStructureSchema;
|
|
215
|
+
export declare var ListDaemonsResponse$: StaticStructureSchema;
|
|
216
|
+
export declare var ListDaemonTaskDefinitionsRequest$: StaticStructureSchema;
|
|
217
|
+
export declare var ListDaemonTaskDefinitionsResponse$: StaticStructureSchema;
|
|
176
218
|
export declare var ListServiceDeploymentsRequest$: StaticStructureSchema;
|
|
177
219
|
export declare var ListServiceDeploymentsResponse$: StaticStructureSchema;
|
|
178
220
|
export declare var ListServicesByNamespaceRequest$: StaticStructureSchema;
|
|
@@ -233,6 +275,8 @@ export declare var PutClusterCapacityProvidersRequest$: StaticStructureSchema;
|
|
|
233
275
|
export declare var PutClusterCapacityProvidersResponse$: StaticStructureSchema;
|
|
234
276
|
export declare var RegisterContainerInstanceRequest$: StaticStructureSchema;
|
|
235
277
|
export declare var RegisterContainerInstanceResponse$: StaticStructureSchema;
|
|
278
|
+
export declare var RegisterDaemonTaskDefinitionRequest$: StaticStructureSchema;
|
|
279
|
+
export declare var RegisterDaemonTaskDefinitionResponse$: StaticStructureSchema;
|
|
236
280
|
export declare var RegisterTaskDefinitionRequest$: StaticStructureSchema;
|
|
237
281
|
export declare var RegisterTaskDefinitionResponse$: StaticStructureSchema;
|
|
238
282
|
export declare var RepositoryCredentials$: StaticStructureSchema;
|
|
@@ -311,6 +355,8 @@ export declare var UpdateContainerAgentRequest$: StaticStructureSchema;
|
|
|
311
355
|
export declare var UpdateContainerAgentResponse$: StaticStructureSchema;
|
|
312
356
|
export declare var UpdateContainerInstancesStateRequest$: StaticStructureSchema;
|
|
313
357
|
export declare var UpdateContainerInstancesStateResponse$: StaticStructureSchema;
|
|
358
|
+
export declare var UpdateDaemonRequest$: StaticStructureSchema;
|
|
359
|
+
export declare var UpdateDaemonResponse$: StaticStructureSchema;
|
|
314
360
|
export declare var UpdatedExpressGatewayService$: StaticStructureSchema;
|
|
315
361
|
export declare var UpdateExpressGatewayServiceRequest$: StaticStructureSchema;
|
|
316
362
|
export declare var UpdateExpressGatewayServiceResponse$: StaticStructureSchema;
|
|
@@ -330,6 +376,7 @@ export declare var VolumeFrom$: StaticStructureSchema;
|
|
|
330
376
|
export declare var VpcLatticeConfiguration$: StaticStructureSchema;
|
|
331
377
|
export declare var CreateCapacityProvider$: StaticOperationSchema;
|
|
332
378
|
export declare var CreateCluster$: StaticOperationSchema;
|
|
379
|
+
export declare var CreateDaemon$: StaticOperationSchema;
|
|
333
380
|
export declare var CreateExpressGatewayService$: StaticOperationSchema;
|
|
334
381
|
export declare var CreateService$: StaticOperationSchema;
|
|
335
382
|
export declare var CreateTaskSet$: StaticOperationSchema;
|
|
@@ -337,6 +384,8 @@ export declare var DeleteAccountSetting$: StaticOperationSchema;
|
|
|
337
384
|
export declare var DeleteAttributes$: StaticOperationSchema;
|
|
338
385
|
export declare var DeleteCapacityProvider$: StaticOperationSchema;
|
|
339
386
|
export declare var DeleteCluster$: StaticOperationSchema;
|
|
387
|
+
export declare var DeleteDaemon$: StaticOperationSchema;
|
|
388
|
+
export declare var DeleteDaemonTaskDefinition$: StaticOperationSchema;
|
|
340
389
|
export declare var DeleteExpressGatewayService$: StaticOperationSchema;
|
|
341
390
|
export declare var DeleteService$: StaticOperationSchema;
|
|
342
391
|
export declare var DeleteTaskDefinitions$: StaticOperationSchema;
|
|
@@ -346,6 +395,10 @@ export declare var DeregisterTaskDefinition$: StaticOperationSchema;
|
|
|
346
395
|
export declare var DescribeCapacityProviders$: StaticOperationSchema;
|
|
347
396
|
export declare var DescribeClusters$: StaticOperationSchema;
|
|
348
397
|
export declare var DescribeContainerInstances$: StaticOperationSchema;
|
|
398
|
+
export declare var DescribeDaemon$: StaticOperationSchema;
|
|
399
|
+
export declare var DescribeDaemonDeployments$: StaticOperationSchema;
|
|
400
|
+
export declare var DescribeDaemonRevisions$: StaticOperationSchema;
|
|
401
|
+
export declare var DescribeDaemonTaskDefinition$: StaticOperationSchema;
|
|
349
402
|
export declare var DescribeExpressGatewayService$: StaticOperationSchema;
|
|
350
403
|
export declare var DescribeServiceDeployments$: StaticOperationSchema;
|
|
351
404
|
export declare var DescribeServiceRevisions$: StaticOperationSchema;
|
|
@@ -360,6 +413,9 @@ export declare var ListAccountSettings$: StaticOperationSchema;
|
|
|
360
413
|
export declare var ListAttributes$: StaticOperationSchema;
|
|
361
414
|
export declare var ListClusters$: StaticOperationSchema;
|
|
362
415
|
export declare var ListContainerInstances$: StaticOperationSchema;
|
|
416
|
+
export declare var ListDaemonDeployments$: StaticOperationSchema;
|
|
417
|
+
export declare var ListDaemons$: StaticOperationSchema;
|
|
418
|
+
export declare var ListDaemonTaskDefinitions$: StaticOperationSchema;
|
|
363
419
|
export declare var ListServiceDeployments$: StaticOperationSchema;
|
|
364
420
|
export declare var ListServices$: StaticOperationSchema;
|
|
365
421
|
export declare var ListServicesByNamespace$: StaticOperationSchema;
|
|
@@ -372,6 +428,7 @@ export declare var PutAccountSettingDefault$: StaticOperationSchema;
|
|
|
372
428
|
export declare var PutAttributes$: StaticOperationSchema;
|
|
373
429
|
export declare var PutClusterCapacityProviders$: StaticOperationSchema;
|
|
374
430
|
export declare var RegisterContainerInstance$: StaticOperationSchema;
|
|
431
|
+
export declare var RegisterDaemonTaskDefinition$: StaticOperationSchema;
|
|
375
432
|
export declare var RegisterTaskDefinition$: StaticOperationSchema;
|
|
376
433
|
export declare var RunTask$: StaticOperationSchema;
|
|
377
434
|
export declare var StartTask$: StaticOperationSchema;
|
|
@@ -387,6 +444,7 @@ export declare var UpdateCluster$: StaticOperationSchema;
|
|
|
387
444
|
export declare var UpdateClusterSettings$: StaticOperationSchema;
|
|
388
445
|
export declare var UpdateContainerAgent$: StaticOperationSchema;
|
|
389
446
|
export declare var UpdateContainerInstancesState$: StaticOperationSchema;
|
|
447
|
+
export declare var UpdateDaemon$: StaticOperationSchema;
|
|
390
448
|
export declare var UpdateExpressGatewayService$: StaticOperationSchema;
|
|
391
449
|
export declare var UpdateService$: StaticOperationSchema;
|
|
392
450
|
export declare var UpdateServicePrimaryTaskSet$: StaticOperationSchema;
|
|
@@ -13,6 +13,10 @@ import {
|
|
|
13
13
|
CreateClusterCommandInput,
|
|
14
14
|
CreateClusterCommandOutput,
|
|
15
15
|
} from "./commands/CreateClusterCommand";
|
|
16
|
+
import {
|
|
17
|
+
CreateDaemonCommandInput,
|
|
18
|
+
CreateDaemonCommandOutput,
|
|
19
|
+
} from "./commands/CreateDaemonCommand";
|
|
16
20
|
import {
|
|
17
21
|
CreateExpressGatewayServiceCommandInput,
|
|
18
22
|
CreateExpressGatewayServiceCommandOutput,
|
|
@@ -41,6 +45,14 @@ import {
|
|
|
41
45
|
DeleteClusterCommandInput,
|
|
42
46
|
DeleteClusterCommandOutput,
|
|
43
47
|
} from "./commands/DeleteClusterCommand";
|
|
48
|
+
import {
|
|
49
|
+
DeleteDaemonCommandInput,
|
|
50
|
+
DeleteDaemonCommandOutput,
|
|
51
|
+
} from "./commands/DeleteDaemonCommand";
|
|
52
|
+
import {
|
|
53
|
+
DeleteDaemonTaskDefinitionCommandInput,
|
|
54
|
+
DeleteDaemonTaskDefinitionCommandOutput,
|
|
55
|
+
} from "./commands/DeleteDaemonTaskDefinitionCommand";
|
|
44
56
|
import {
|
|
45
57
|
DeleteExpressGatewayServiceCommandInput,
|
|
46
58
|
DeleteExpressGatewayServiceCommandOutput,
|
|
@@ -77,6 +89,22 @@ import {
|
|
|
77
89
|
DescribeContainerInstancesCommandInput,
|
|
78
90
|
DescribeContainerInstancesCommandOutput,
|
|
79
91
|
} from "./commands/DescribeContainerInstancesCommand";
|
|
92
|
+
import {
|
|
93
|
+
DescribeDaemonCommandInput,
|
|
94
|
+
DescribeDaemonCommandOutput,
|
|
95
|
+
} from "./commands/DescribeDaemonCommand";
|
|
96
|
+
import {
|
|
97
|
+
DescribeDaemonDeploymentsCommandInput,
|
|
98
|
+
DescribeDaemonDeploymentsCommandOutput,
|
|
99
|
+
} from "./commands/DescribeDaemonDeploymentsCommand";
|
|
100
|
+
import {
|
|
101
|
+
DescribeDaemonRevisionsCommandInput,
|
|
102
|
+
DescribeDaemonRevisionsCommandOutput,
|
|
103
|
+
} from "./commands/DescribeDaemonRevisionsCommand";
|
|
104
|
+
import {
|
|
105
|
+
DescribeDaemonTaskDefinitionCommandInput,
|
|
106
|
+
DescribeDaemonTaskDefinitionCommandOutput,
|
|
107
|
+
} from "./commands/DescribeDaemonTaskDefinitionCommand";
|
|
80
108
|
import {
|
|
81
109
|
DescribeExpressGatewayServiceCommandInput,
|
|
82
110
|
DescribeExpressGatewayServiceCommandOutput,
|
|
@@ -133,6 +161,18 @@ import {
|
|
|
133
161
|
ListContainerInstancesCommandInput,
|
|
134
162
|
ListContainerInstancesCommandOutput,
|
|
135
163
|
} from "./commands/ListContainerInstancesCommand";
|
|
164
|
+
import {
|
|
165
|
+
ListDaemonDeploymentsCommandInput,
|
|
166
|
+
ListDaemonDeploymentsCommandOutput,
|
|
167
|
+
} from "./commands/ListDaemonDeploymentsCommand";
|
|
168
|
+
import {
|
|
169
|
+
ListDaemonsCommandInput,
|
|
170
|
+
ListDaemonsCommandOutput,
|
|
171
|
+
} from "./commands/ListDaemonsCommand";
|
|
172
|
+
import {
|
|
173
|
+
ListDaemonTaskDefinitionsCommandInput,
|
|
174
|
+
ListDaemonTaskDefinitionsCommandOutput,
|
|
175
|
+
} from "./commands/ListDaemonTaskDefinitionsCommand";
|
|
136
176
|
import {
|
|
137
177
|
ListServiceDeploymentsCommandInput,
|
|
138
178
|
ListServiceDeploymentsCommandOutput,
|
|
@@ -181,6 +221,10 @@ import {
|
|
|
181
221
|
RegisterContainerInstanceCommandInput,
|
|
182
222
|
RegisterContainerInstanceCommandOutput,
|
|
183
223
|
} from "./commands/RegisterContainerInstanceCommand";
|
|
224
|
+
import {
|
|
225
|
+
RegisterDaemonTaskDefinitionCommandInput,
|
|
226
|
+
RegisterDaemonTaskDefinitionCommandOutput,
|
|
227
|
+
} from "./commands/RegisterDaemonTaskDefinitionCommand";
|
|
184
228
|
import {
|
|
185
229
|
RegisterTaskDefinitionCommandInput,
|
|
186
230
|
RegisterTaskDefinitionCommandOutput,
|
|
@@ -241,6 +285,10 @@ import {
|
|
|
241
285
|
UpdateContainerInstancesStateCommandInput,
|
|
242
286
|
UpdateContainerInstancesStateCommandOutput,
|
|
243
287
|
} from "./commands/UpdateContainerInstancesStateCommand";
|
|
288
|
+
import {
|
|
289
|
+
UpdateDaemonCommandInput,
|
|
290
|
+
UpdateDaemonCommandOutput,
|
|
291
|
+
} from "./commands/UpdateDaemonCommand";
|
|
244
292
|
import {
|
|
245
293
|
UpdateExpressGatewayServiceCommandInput,
|
|
246
294
|
UpdateExpressGatewayServiceCommandOutput,
|
|
@@ -290,6 +338,19 @@ export interface ECS {
|
|
|
290
338
|
options: __HttpHandlerOptions,
|
|
291
339
|
cb: (err: any, data?: CreateClusterCommandOutput) => void
|
|
292
340
|
): void;
|
|
341
|
+
createDaemon(
|
|
342
|
+
args: CreateDaemonCommandInput,
|
|
343
|
+
options?: __HttpHandlerOptions
|
|
344
|
+
): Promise<CreateDaemonCommandOutput>;
|
|
345
|
+
createDaemon(
|
|
346
|
+
args: CreateDaemonCommandInput,
|
|
347
|
+
cb: (err: any, data?: CreateDaemonCommandOutput) => void
|
|
348
|
+
): void;
|
|
349
|
+
createDaemon(
|
|
350
|
+
args: CreateDaemonCommandInput,
|
|
351
|
+
options: __HttpHandlerOptions,
|
|
352
|
+
cb: (err: any, data?: CreateDaemonCommandOutput) => void
|
|
353
|
+
): void;
|
|
293
354
|
createExpressGatewayService(
|
|
294
355
|
args: CreateExpressGatewayServiceCommandInput,
|
|
295
356
|
options?: __HttpHandlerOptions
|
|
@@ -381,6 +442,32 @@ export interface ECS {
|
|
|
381
442
|
options: __HttpHandlerOptions,
|
|
382
443
|
cb: (err: any, data?: DeleteClusterCommandOutput) => void
|
|
383
444
|
): void;
|
|
445
|
+
deleteDaemon(
|
|
446
|
+
args: DeleteDaemonCommandInput,
|
|
447
|
+
options?: __HttpHandlerOptions
|
|
448
|
+
): Promise<DeleteDaemonCommandOutput>;
|
|
449
|
+
deleteDaemon(
|
|
450
|
+
args: DeleteDaemonCommandInput,
|
|
451
|
+
cb: (err: any, data?: DeleteDaemonCommandOutput) => void
|
|
452
|
+
): void;
|
|
453
|
+
deleteDaemon(
|
|
454
|
+
args: DeleteDaemonCommandInput,
|
|
455
|
+
options: __HttpHandlerOptions,
|
|
456
|
+
cb: (err: any, data?: DeleteDaemonCommandOutput) => void
|
|
457
|
+
): void;
|
|
458
|
+
deleteDaemonTaskDefinition(
|
|
459
|
+
args: DeleteDaemonTaskDefinitionCommandInput,
|
|
460
|
+
options?: __HttpHandlerOptions
|
|
461
|
+
): Promise<DeleteDaemonTaskDefinitionCommandOutput>;
|
|
462
|
+
deleteDaemonTaskDefinition(
|
|
463
|
+
args: DeleteDaemonTaskDefinitionCommandInput,
|
|
464
|
+
cb: (err: any, data?: DeleteDaemonTaskDefinitionCommandOutput) => void
|
|
465
|
+
): void;
|
|
466
|
+
deleteDaemonTaskDefinition(
|
|
467
|
+
args: DeleteDaemonTaskDefinitionCommandInput,
|
|
468
|
+
options: __HttpHandlerOptions,
|
|
469
|
+
cb: (err: any, data?: DeleteDaemonTaskDefinitionCommandOutput) => void
|
|
470
|
+
): void;
|
|
384
471
|
deleteExpressGatewayService(
|
|
385
472
|
args: DeleteExpressGatewayServiceCommandInput,
|
|
386
473
|
options?: __HttpHandlerOptions
|
|
@@ -500,6 +587,58 @@ export interface ECS {
|
|
|
500
587
|
options: __HttpHandlerOptions,
|
|
501
588
|
cb: (err: any, data?: DescribeContainerInstancesCommandOutput) => void
|
|
502
589
|
): void;
|
|
590
|
+
describeDaemon(
|
|
591
|
+
args: DescribeDaemonCommandInput,
|
|
592
|
+
options?: __HttpHandlerOptions
|
|
593
|
+
): Promise<DescribeDaemonCommandOutput>;
|
|
594
|
+
describeDaemon(
|
|
595
|
+
args: DescribeDaemonCommandInput,
|
|
596
|
+
cb: (err: any, data?: DescribeDaemonCommandOutput) => void
|
|
597
|
+
): void;
|
|
598
|
+
describeDaemon(
|
|
599
|
+
args: DescribeDaemonCommandInput,
|
|
600
|
+
options: __HttpHandlerOptions,
|
|
601
|
+
cb: (err: any, data?: DescribeDaemonCommandOutput) => void
|
|
602
|
+
): void;
|
|
603
|
+
describeDaemonDeployments(
|
|
604
|
+
args: DescribeDaemonDeploymentsCommandInput,
|
|
605
|
+
options?: __HttpHandlerOptions
|
|
606
|
+
): Promise<DescribeDaemonDeploymentsCommandOutput>;
|
|
607
|
+
describeDaemonDeployments(
|
|
608
|
+
args: DescribeDaemonDeploymentsCommandInput,
|
|
609
|
+
cb: (err: any, data?: DescribeDaemonDeploymentsCommandOutput) => void
|
|
610
|
+
): void;
|
|
611
|
+
describeDaemonDeployments(
|
|
612
|
+
args: DescribeDaemonDeploymentsCommandInput,
|
|
613
|
+
options: __HttpHandlerOptions,
|
|
614
|
+
cb: (err: any, data?: DescribeDaemonDeploymentsCommandOutput) => void
|
|
615
|
+
): void;
|
|
616
|
+
describeDaemonRevisions(
|
|
617
|
+
args: DescribeDaemonRevisionsCommandInput,
|
|
618
|
+
options?: __HttpHandlerOptions
|
|
619
|
+
): Promise<DescribeDaemonRevisionsCommandOutput>;
|
|
620
|
+
describeDaemonRevisions(
|
|
621
|
+
args: DescribeDaemonRevisionsCommandInput,
|
|
622
|
+
cb: (err: any, data?: DescribeDaemonRevisionsCommandOutput) => void
|
|
623
|
+
): void;
|
|
624
|
+
describeDaemonRevisions(
|
|
625
|
+
args: DescribeDaemonRevisionsCommandInput,
|
|
626
|
+
options: __HttpHandlerOptions,
|
|
627
|
+
cb: (err: any, data?: DescribeDaemonRevisionsCommandOutput) => void
|
|
628
|
+
): void;
|
|
629
|
+
describeDaemonTaskDefinition(
|
|
630
|
+
args: DescribeDaemonTaskDefinitionCommandInput,
|
|
631
|
+
options?: __HttpHandlerOptions
|
|
632
|
+
): Promise<DescribeDaemonTaskDefinitionCommandOutput>;
|
|
633
|
+
describeDaemonTaskDefinition(
|
|
634
|
+
args: DescribeDaemonTaskDefinitionCommandInput,
|
|
635
|
+
cb: (err: any, data?: DescribeDaemonTaskDefinitionCommandOutput) => void
|
|
636
|
+
): void;
|
|
637
|
+
describeDaemonTaskDefinition(
|
|
638
|
+
args: DescribeDaemonTaskDefinitionCommandInput,
|
|
639
|
+
options: __HttpHandlerOptions,
|
|
640
|
+
cb: (err: any, data?: DescribeDaemonTaskDefinitionCommandOutput) => void
|
|
641
|
+
): void;
|
|
503
642
|
describeExpressGatewayService(
|
|
504
643
|
args: DescribeExpressGatewayServiceCommandInput,
|
|
505
644
|
options?: __HttpHandlerOptions
|
|
@@ -686,6 +825,47 @@ export interface ECS {
|
|
|
686
825
|
options: __HttpHandlerOptions,
|
|
687
826
|
cb: (err: any, data?: ListContainerInstancesCommandOutput) => void
|
|
688
827
|
): void;
|
|
828
|
+
listDaemonDeployments(
|
|
829
|
+
args: ListDaemonDeploymentsCommandInput,
|
|
830
|
+
options?: __HttpHandlerOptions
|
|
831
|
+
): Promise<ListDaemonDeploymentsCommandOutput>;
|
|
832
|
+
listDaemonDeployments(
|
|
833
|
+
args: ListDaemonDeploymentsCommandInput,
|
|
834
|
+
cb: (err: any, data?: ListDaemonDeploymentsCommandOutput) => void
|
|
835
|
+
): void;
|
|
836
|
+
listDaemonDeployments(
|
|
837
|
+
args: ListDaemonDeploymentsCommandInput,
|
|
838
|
+
options: __HttpHandlerOptions,
|
|
839
|
+
cb: (err: any, data?: ListDaemonDeploymentsCommandOutput) => void
|
|
840
|
+
): void;
|
|
841
|
+
listDaemons(): Promise<ListDaemonsCommandOutput>;
|
|
842
|
+
listDaemons(
|
|
843
|
+
args: ListDaemonsCommandInput,
|
|
844
|
+
options?: __HttpHandlerOptions
|
|
845
|
+
): Promise<ListDaemonsCommandOutput>;
|
|
846
|
+
listDaemons(
|
|
847
|
+
args: ListDaemonsCommandInput,
|
|
848
|
+
cb: (err: any, data?: ListDaemonsCommandOutput) => void
|
|
849
|
+
): void;
|
|
850
|
+
listDaemons(
|
|
851
|
+
args: ListDaemonsCommandInput,
|
|
852
|
+
options: __HttpHandlerOptions,
|
|
853
|
+
cb: (err: any, data?: ListDaemonsCommandOutput) => void
|
|
854
|
+
): void;
|
|
855
|
+
listDaemonTaskDefinitions(): Promise<ListDaemonTaskDefinitionsCommandOutput>;
|
|
856
|
+
listDaemonTaskDefinitions(
|
|
857
|
+
args: ListDaemonTaskDefinitionsCommandInput,
|
|
858
|
+
options?: __HttpHandlerOptions
|
|
859
|
+
): Promise<ListDaemonTaskDefinitionsCommandOutput>;
|
|
860
|
+
listDaemonTaskDefinitions(
|
|
861
|
+
args: ListDaemonTaskDefinitionsCommandInput,
|
|
862
|
+
cb: (err: any, data?: ListDaemonTaskDefinitionsCommandOutput) => void
|
|
863
|
+
): void;
|
|
864
|
+
listDaemonTaskDefinitions(
|
|
865
|
+
args: ListDaemonTaskDefinitionsCommandInput,
|
|
866
|
+
options: __HttpHandlerOptions,
|
|
867
|
+
cb: (err: any, data?: ListDaemonTaskDefinitionsCommandOutput) => void
|
|
868
|
+
): void;
|
|
689
869
|
listServiceDeployments(
|
|
690
870
|
args: ListServiceDeploymentsCommandInput,
|
|
691
871
|
options?: __HttpHandlerOptions
|
|
@@ -847,6 +1027,19 @@ export interface ECS {
|
|
|
847
1027
|
options: __HttpHandlerOptions,
|
|
848
1028
|
cb: (err: any, data?: RegisterContainerInstanceCommandOutput) => void
|
|
849
1029
|
): void;
|
|
1030
|
+
registerDaemonTaskDefinition(
|
|
1031
|
+
args: RegisterDaemonTaskDefinitionCommandInput,
|
|
1032
|
+
options?: __HttpHandlerOptions
|
|
1033
|
+
): Promise<RegisterDaemonTaskDefinitionCommandOutput>;
|
|
1034
|
+
registerDaemonTaskDefinition(
|
|
1035
|
+
args: RegisterDaemonTaskDefinitionCommandInput,
|
|
1036
|
+
cb: (err: any, data?: RegisterDaemonTaskDefinitionCommandOutput) => void
|
|
1037
|
+
): void;
|
|
1038
|
+
registerDaemonTaskDefinition(
|
|
1039
|
+
args: RegisterDaemonTaskDefinitionCommandInput,
|
|
1040
|
+
options: __HttpHandlerOptions,
|
|
1041
|
+
cb: (err: any, data?: RegisterDaemonTaskDefinitionCommandOutput) => void
|
|
1042
|
+
): void;
|
|
850
1043
|
registerTaskDefinition(
|
|
851
1044
|
args: RegisterTaskDefinitionCommandInput,
|
|
852
1045
|
options?: __HttpHandlerOptions
|
|
@@ -1044,6 +1237,19 @@ export interface ECS {
|
|
|
1044
1237
|
options: __HttpHandlerOptions,
|
|
1045
1238
|
cb: (err: any, data?: UpdateContainerInstancesStateCommandOutput) => void
|
|
1046
1239
|
): void;
|
|
1240
|
+
updateDaemon(
|
|
1241
|
+
args: UpdateDaemonCommandInput,
|
|
1242
|
+
options?: __HttpHandlerOptions
|
|
1243
|
+
): Promise<UpdateDaemonCommandOutput>;
|
|
1244
|
+
updateDaemon(
|
|
1245
|
+
args: UpdateDaemonCommandInput,
|
|
1246
|
+
cb: (err: any, data?: UpdateDaemonCommandOutput) => void
|
|
1247
|
+
): void;
|
|
1248
|
+
updateDaemon(
|
|
1249
|
+
args: UpdateDaemonCommandInput,
|
|
1250
|
+
options: __HttpHandlerOptions,
|
|
1251
|
+
cb: (err: any, data?: UpdateDaemonCommandOutput) => void
|
|
1252
|
+
): void;
|
|
1047
1253
|
updateExpressGatewayService(
|
|
1048
1254
|
args: UpdateExpressGatewayServiceCommandInput,
|
|
1049
1255
|
options?: __HttpHandlerOptions
|
|
@@ -1172,6 +1378,51 @@ export interface ECS {
|
|
|
1172
1378
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1173
1379
|
>
|
|
1174
1380
|
): Paginator<ListTasksCommandOutput>;
|
|
1381
|
+
waitUntilDaemonActive(
|
|
1382
|
+
args: DescribeDaemonCommandInput,
|
|
1383
|
+
waiterConfig:
|
|
1384
|
+
| number
|
|
1385
|
+
| Pick<
|
|
1386
|
+
WaiterConfiguration<ECS>,
|
|
1387
|
+
Exclude<keyof WaiterConfiguration<ECS>, "client">
|
|
1388
|
+
>
|
|
1389
|
+
): Promise<WaiterResult>;
|
|
1390
|
+
waitUntilDaemonDeploymentSuccessful(
|
|
1391
|
+
args: DescribeDaemonDeploymentsCommandInput,
|
|
1392
|
+
waiterConfig:
|
|
1393
|
+
| number
|
|
1394
|
+
| Pick<
|
|
1395
|
+
WaiterConfiguration<ECS>,
|
|
1396
|
+
Exclude<keyof WaiterConfiguration<ECS>, "client">
|
|
1397
|
+
>
|
|
1398
|
+
): Promise<WaiterResult>;
|
|
1399
|
+
waitUntilDaemonDeploymentStopped(
|
|
1400
|
+
args: DescribeDaemonDeploymentsCommandInput,
|
|
1401
|
+
waiterConfig:
|
|
1402
|
+
| number
|
|
1403
|
+
| Pick<
|
|
1404
|
+
WaiterConfiguration<ECS>,
|
|
1405
|
+
Exclude<keyof WaiterConfiguration<ECS>, "client">
|
|
1406
|
+
>
|
|
1407
|
+
): Promise<WaiterResult>;
|
|
1408
|
+
waitUntilDaemonTaskDefinitionActive(
|
|
1409
|
+
args: DescribeDaemonTaskDefinitionCommandInput,
|
|
1410
|
+
waiterConfig:
|
|
1411
|
+
| number
|
|
1412
|
+
| Pick<
|
|
1413
|
+
WaiterConfiguration<ECS>,
|
|
1414
|
+
Exclude<keyof WaiterConfiguration<ECS>, "client">
|
|
1415
|
+
>
|
|
1416
|
+
): Promise<WaiterResult>;
|
|
1417
|
+
waitUntilDaemonTaskDefinitionDeleted(
|
|
1418
|
+
args: DescribeDaemonTaskDefinitionCommandInput,
|
|
1419
|
+
waiterConfig:
|
|
1420
|
+
| number
|
|
1421
|
+
| Pick<
|
|
1422
|
+
WaiterConfiguration<ECS>,
|
|
1423
|
+
Exclude<keyof WaiterConfiguration<ECS>, "client">
|
|
1424
|
+
>
|
|
1425
|
+
): Promise<WaiterResult>;
|
|
1175
1426
|
waitUntilServicesInactive(
|
|
1176
1427
|
args: DescribeServicesCommandInput,
|
|
1177
1428
|
waiterConfig:
|
|
@@ -52,6 +52,10 @@ import {
|
|
|
52
52
|
CreateClusterCommandInput,
|
|
53
53
|
CreateClusterCommandOutput,
|
|
54
54
|
} from "./commands/CreateClusterCommand";
|
|
55
|
+
import {
|
|
56
|
+
CreateDaemonCommandInput,
|
|
57
|
+
CreateDaemonCommandOutput,
|
|
58
|
+
} from "./commands/CreateDaemonCommand";
|
|
55
59
|
import {
|
|
56
60
|
CreateExpressGatewayServiceCommandInput,
|
|
57
61
|
CreateExpressGatewayServiceCommandOutput,
|
|
@@ -80,6 +84,14 @@ import {
|
|
|
80
84
|
DeleteClusterCommandInput,
|
|
81
85
|
DeleteClusterCommandOutput,
|
|
82
86
|
} from "./commands/DeleteClusterCommand";
|
|
87
|
+
import {
|
|
88
|
+
DeleteDaemonCommandInput,
|
|
89
|
+
DeleteDaemonCommandOutput,
|
|
90
|
+
} from "./commands/DeleteDaemonCommand";
|
|
91
|
+
import {
|
|
92
|
+
DeleteDaemonTaskDefinitionCommandInput,
|
|
93
|
+
DeleteDaemonTaskDefinitionCommandOutput,
|
|
94
|
+
} from "./commands/DeleteDaemonTaskDefinitionCommand";
|
|
83
95
|
import {
|
|
84
96
|
DeleteExpressGatewayServiceCommandInput,
|
|
85
97
|
DeleteExpressGatewayServiceCommandOutput,
|
|
@@ -116,6 +128,22 @@ import {
|
|
|
116
128
|
DescribeContainerInstancesCommandInput,
|
|
117
129
|
DescribeContainerInstancesCommandOutput,
|
|
118
130
|
} from "./commands/DescribeContainerInstancesCommand";
|
|
131
|
+
import {
|
|
132
|
+
DescribeDaemonCommandInput,
|
|
133
|
+
DescribeDaemonCommandOutput,
|
|
134
|
+
} from "./commands/DescribeDaemonCommand";
|
|
135
|
+
import {
|
|
136
|
+
DescribeDaemonDeploymentsCommandInput,
|
|
137
|
+
DescribeDaemonDeploymentsCommandOutput,
|
|
138
|
+
} from "./commands/DescribeDaemonDeploymentsCommand";
|
|
139
|
+
import {
|
|
140
|
+
DescribeDaemonRevisionsCommandInput,
|
|
141
|
+
DescribeDaemonRevisionsCommandOutput,
|
|
142
|
+
} from "./commands/DescribeDaemonRevisionsCommand";
|
|
143
|
+
import {
|
|
144
|
+
DescribeDaemonTaskDefinitionCommandInput,
|
|
145
|
+
DescribeDaemonTaskDefinitionCommandOutput,
|
|
146
|
+
} from "./commands/DescribeDaemonTaskDefinitionCommand";
|
|
119
147
|
import {
|
|
120
148
|
DescribeExpressGatewayServiceCommandInput,
|
|
121
149
|
DescribeExpressGatewayServiceCommandOutput,
|
|
@@ -172,6 +200,18 @@ import {
|
|
|
172
200
|
ListContainerInstancesCommandInput,
|
|
173
201
|
ListContainerInstancesCommandOutput,
|
|
174
202
|
} from "./commands/ListContainerInstancesCommand";
|
|
203
|
+
import {
|
|
204
|
+
ListDaemonDeploymentsCommandInput,
|
|
205
|
+
ListDaemonDeploymentsCommandOutput,
|
|
206
|
+
} from "./commands/ListDaemonDeploymentsCommand";
|
|
207
|
+
import {
|
|
208
|
+
ListDaemonsCommandInput,
|
|
209
|
+
ListDaemonsCommandOutput,
|
|
210
|
+
} from "./commands/ListDaemonsCommand";
|
|
211
|
+
import {
|
|
212
|
+
ListDaemonTaskDefinitionsCommandInput,
|
|
213
|
+
ListDaemonTaskDefinitionsCommandOutput,
|
|
214
|
+
} from "./commands/ListDaemonTaskDefinitionsCommand";
|
|
175
215
|
import {
|
|
176
216
|
ListServiceDeploymentsCommandInput,
|
|
177
217
|
ListServiceDeploymentsCommandOutput,
|
|
@@ -220,6 +260,10 @@ import {
|
|
|
220
260
|
RegisterContainerInstanceCommandInput,
|
|
221
261
|
RegisterContainerInstanceCommandOutput,
|
|
222
262
|
} from "./commands/RegisterContainerInstanceCommand";
|
|
263
|
+
import {
|
|
264
|
+
RegisterDaemonTaskDefinitionCommandInput,
|
|
265
|
+
RegisterDaemonTaskDefinitionCommandOutput,
|
|
266
|
+
} from "./commands/RegisterDaemonTaskDefinitionCommand";
|
|
223
267
|
import {
|
|
224
268
|
RegisterTaskDefinitionCommandInput,
|
|
225
269
|
RegisterTaskDefinitionCommandOutput,
|
|
@@ -280,6 +324,10 @@ import {
|
|
|
280
324
|
UpdateContainerInstancesStateCommandInput,
|
|
281
325
|
UpdateContainerInstancesStateCommandOutput,
|
|
282
326
|
} from "./commands/UpdateContainerInstancesStateCommand";
|
|
327
|
+
import {
|
|
328
|
+
UpdateDaemonCommandInput,
|
|
329
|
+
UpdateDaemonCommandOutput,
|
|
330
|
+
} from "./commands/UpdateDaemonCommand";
|
|
283
331
|
import {
|
|
284
332
|
UpdateExpressGatewayServiceCommandInput,
|
|
285
333
|
UpdateExpressGatewayServiceCommandOutput,
|
|
@@ -310,6 +358,7 @@ export { __Client };
|
|
|
310
358
|
export type ServiceInputTypes =
|
|
311
359
|
| CreateCapacityProviderCommandInput
|
|
312
360
|
| CreateClusterCommandInput
|
|
361
|
+
| CreateDaemonCommandInput
|
|
313
362
|
| CreateExpressGatewayServiceCommandInput
|
|
314
363
|
| CreateServiceCommandInput
|
|
315
364
|
| CreateTaskSetCommandInput
|
|
@@ -317,6 +366,8 @@ export type ServiceInputTypes =
|
|
|
317
366
|
| DeleteAttributesCommandInput
|
|
318
367
|
| DeleteCapacityProviderCommandInput
|
|
319
368
|
| DeleteClusterCommandInput
|
|
369
|
+
| DeleteDaemonCommandInput
|
|
370
|
+
| DeleteDaemonTaskDefinitionCommandInput
|
|
320
371
|
| DeleteExpressGatewayServiceCommandInput
|
|
321
372
|
| DeleteServiceCommandInput
|
|
322
373
|
| DeleteTaskDefinitionsCommandInput
|
|
@@ -326,6 +377,10 @@ export type ServiceInputTypes =
|
|
|
326
377
|
| DescribeCapacityProvidersCommandInput
|
|
327
378
|
| DescribeClustersCommandInput
|
|
328
379
|
| DescribeContainerInstancesCommandInput
|
|
380
|
+
| DescribeDaemonCommandInput
|
|
381
|
+
| DescribeDaemonDeploymentsCommandInput
|
|
382
|
+
| DescribeDaemonRevisionsCommandInput
|
|
383
|
+
| DescribeDaemonTaskDefinitionCommandInput
|
|
329
384
|
| DescribeExpressGatewayServiceCommandInput
|
|
330
385
|
| DescribeServiceDeploymentsCommandInput
|
|
331
386
|
| DescribeServiceRevisionsCommandInput
|
|
@@ -340,6 +395,9 @@ export type ServiceInputTypes =
|
|
|
340
395
|
| ListAttributesCommandInput
|
|
341
396
|
| ListClustersCommandInput
|
|
342
397
|
| ListContainerInstancesCommandInput
|
|
398
|
+
| ListDaemonDeploymentsCommandInput
|
|
399
|
+
| ListDaemonTaskDefinitionsCommandInput
|
|
400
|
+
| ListDaemonsCommandInput
|
|
343
401
|
| ListServiceDeploymentsCommandInput
|
|
344
402
|
| ListServicesByNamespaceCommandInput
|
|
345
403
|
| ListServicesCommandInput
|
|
@@ -352,6 +410,7 @@ export type ServiceInputTypes =
|
|
|
352
410
|
| PutAttributesCommandInput
|
|
353
411
|
| PutClusterCapacityProvidersCommandInput
|
|
354
412
|
| RegisterContainerInstanceCommandInput
|
|
413
|
+
| RegisterDaemonTaskDefinitionCommandInput
|
|
355
414
|
| RegisterTaskDefinitionCommandInput
|
|
356
415
|
| RunTaskCommandInput
|
|
357
416
|
| StartTaskCommandInput
|
|
@@ -367,6 +426,7 @@ export type ServiceInputTypes =
|
|
|
367
426
|
| UpdateClusterSettingsCommandInput
|
|
368
427
|
| UpdateContainerAgentCommandInput
|
|
369
428
|
| UpdateContainerInstancesStateCommandInput
|
|
429
|
+
| UpdateDaemonCommandInput
|
|
370
430
|
| UpdateExpressGatewayServiceCommandInput
|
|
371
431
|
| UpdateServiceCommandInput
|
|
372
432
|
| UpdateServicePrimaryTaskSetCommandInput
|
|
@@ -375,6 +435,7 @@ export type ServiceInputTypes =
|
|
|
375
435
|
export type ServiceOutputTypes =
|
|
376
436
|
| CreateCapacityProviderCommandOutput
|
|
377
437
|
| CreateClusterCommandOutput
|
|
438
|
+
| CreateDaemonCommandOutput
|
|
378
439
|
| CreateExpressGatewayServiceCommandOutput
|
|
379
440
|
| CreateServiceCommandOutput
|
|
380
441
|
| CreateTaskSetCommandOutput
|
|
@@ -382,6 +443,8 @@ export type ServiceOutputTypes =
|
|
|
382
443
|
| DeleteAttributesCommandOutput
|
|
383
444
|
| DeleteCapacityProviderCommandOutput
|
|
384
445
|
| DeleteClusterCommandOutput
|
|
446
|
+
| DeleteDaemonCommandOutput
|
|
447
|
+
| DeleteDaemonTaskDefinitionCommandOutput
|
|
385
448
|
| DeleteExpressGatewayServiceCommandOutput
|
|
386
449
|
| DeleteServiceCommandOutput
|
|
387
450
|
| DeleteTaskDefinitionsCommandOutput
|
|
@@ -391,6 +454,10 @@ export type ServiceOutputTypes =
|
|
|
391
454
|
| DescribeCapacityProvidersCommandOutput
|
|
392
455
|
| DescribeClustersCommandOutput
|
|
393
456
|
| DescribeContainerInstancesCommandOutput
|
|
457
|
+
| DescribeDaemonCommandOutput
|
|
458
|
+
| DescribeDaemonDeploymentsCommandOutput
|
|
459
|
+
| DescribeDaemonRevisionsCommandOutput
|
|
460
|
+
| DescribeDaemonTaskDefinitionCommandOutput
|
|
394
461
|
| DescribeExpressGatewayServiceCommandOutput
|
|
395
462
|
| DescribeServiceDeploymentsCommandOutput
|
|
396
463
|
| DescribeServiceRevisionsCommandOutput
|
|
@@ -405,6 +472,9 @@ export type ServiceOutputTypes =
|
|
|
405
472
|
| ListAttributesCommandOutput
|
|
406
473
|
| ListClustersCommandOutput
|
|
407
474
|
| ListContainerInstancesCommandOutput
|
|
475
|
+
| ListDaemonDeploymentsCommandOutput
|
|
476
|
+
| ListDaemonTaskDefinitionsCommandOutput
|
|
477
|
+
| ListDaemonsCommandOutput
|
|
408
478
|
| ListServiceDeploymentsCommandOutput
|
|
409
479
|
| ListServicesByNamespaceCommandOutput
|
|
410
480
|
| ListServicesCommandOutput
|
|
@@ -417,6 +487,7 @@ export type ServiceOutputTypes =
|
|
|
417
487
|
| PutAttributesCommandOutput
|
|
418
488
|
| PutClusterCapacityProvidersCommandOutput
|
|
419
489
|
| RegisterContainerInstanceCommandOutput
|
|
490
|
+
| RegisterDaemonTaskDefinitionCommandOutput
|
|
420
491
|
| RegisterTaskDefinitionCommandOutput
|
|
421
492
|
| RunTaskCommandOutput
|
|
422
493
|
| StartTaskCommandOutput
|
|
@@ -432,6 +503,7 @@ export type ServiceOutputTypes =
|
|
|
432
503
|
| UpdateClusterSettingsCommandOutput
|
|
433
504
|
| UpdateContainerAgentCommandOutput
|
|
434
505
|
| UpdateContainerInstancesStateCommandOutput
|
|
506
|
+
| UpdateDaemonCommandOutput
|
|
435
507
|
| UpdateExpressGatewayServiceCommandOutput
|
|
436
508
|
| UpdateServiceCommandOutput
|
|
437
509
|
| UpdateServicePrimaryTaskSetCommandOutput
|