@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.
Files changed (119) hide show
  1. package/README.md +91 -7
  2. package/dist-cjs/index.js +530 -33
  3. package/dist-cjs/models/errors.js +37 -11
  4. package/dist-cjs/schemas/schemas_0.js +508 -100
  5. package/dist-es/ECS.js +34 -0
  6. package/dist-es/commands/CreateDaemonCommand.js +16 -0
  7. package/dist-es/commands/DeleteDaemonCommand.js +16 -0
  8. package/dist-es/commands/DeleteDaemonTaskDefinitionCommand.js +16 -0
  9. package/dist-es/commands/DescribeDaemonCommand.js +16 -0
  10. package/dist-es/commands/DescribeDaemonDeploymentsCommand.js +16 -0
  11. package/dist-es/commands/DescribeDaemonRevisionsCommand.js +16 -0
  12. package/dist-es/commands/DescribeDaemonTaskDefinitionCommand.js +16 -0
  13. package/dist-es/commands/ListDaemonDeploymentsCommand.js +16 -0
  14. package/dist-es/commands/ListDaemonTaskDefinitionsCommand.js +16 -0
  15. package/dist-es/commands/ListDaemonsCommand.js +16 -0
  16. package/dist-es/commands/RegisterDaemonTaskDefinitionCommand.js +16 -0
  17. package/dist-es/commands/UpdateDaemonCommand.js +16 -0
  18. package/dist-es/commands/index.js +12 -0
  19. package/dist-es/index.js +1 -0
  20. package/dist-es/models/enums.js +72 -33
  21. package/dist-es/models/errors.js +32 -8
  22. package/dist-es/models/models_1.js +1 -0
  23. package/dist-es/schemas/schemas_0.js +500 -93
  24. package/dist-es/waiters/index.js +5 -0
  25. package/dist-es/waiters/waitForDaemonActive.js +40 -0
  26. package/dist-es/waiters/waitForDaemonDeploymentStopped.js +54 -0
  27. package/dist-es/waiters/waitForDaemonDeploymentSuccessful.js +99 -0
  28. package/dist-es/waiters/waitForDaemonTaskDefinitionActive.js +49 -0
  29. package/dist-es/waiters/waitForDaemonTaskDefinitionDeleted.js +31 -0
  30. package/dist-types/ECS.d.ts +116 -0
  31. package/dist-types/ECSClient.d.ts +14 -2
  32. package/dist-types/commands/CreateDaemonCommand.d.ts +150 -0
  33. package/dist-types/commands/CreateTaskSetCommand.d.ts +1 -1
  34. package/dist-types/commands/DeleteDaemonCommand.d.ts +121 -0
  35. package/dist-types/commands/DeleteDaemonTaskDefinitionCommand.d.ts +101 -0
  36. package/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +1 -0
  37. package/dist-types/commands/DeleteTaskSetCommand.d.ts +1 -1
  38. package/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +1 -1
  39. package/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +1 -0
  40. package/dist-types/commands/DescribeContainerInstancesCommand.d.ts +1 -1
  41. package/dist-types/commands/DescribeDaemonCommand.d.ts +148 -0
  42. package/dist-types/commands/DescribeDaemonDeploymentsCommand.d.ts +229 -0
  43. package/dist-types/commands/DescribeDaemonRevisionsCommand.d.ts +155 -0
  44. package/dist-types/commands/DescribeDaemonTaskDefinitionCommand.d.ts +286 -0
  45. package/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +1 -0
  46. package/dist-types/commands/DescribeTaskSetsCommand.d.ts +1 -1
  47. package/dist-types/commands/DescribeTasksCommand.d.ts +1 -1
  48. package/dist-types/commands/GetTaskProtectionCommand.d.ts +1 -1
  49. package/dist-types/commands/ListDaemonDeploymentsCommand.d.ts +145 -0
  50. package/dist-types/commands/ListDaemonTaskDefinitionsCommand.d.ts +129 -0
  51. package/dist-types/commands/ListDaemonsCommand.d.ts +133 -0
  52. package/dist-types/commands/ListTaskDefinitionsCommand.d.ts +2 -1
  53. package/dist-types/commands/ListTasksCommand.d.ts +1 -0
  54. package/dist-types/commands/RegisterContainerInstanceCommand.d.ts +1 -1
  55. package/dist-types/commands/RegisterDaemonTaskDefinitionCommand.d.ts +277 -0
  56. package/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +2 -1
  57. package/dist-types/commands/RunTaskCommand.d.ts +1 -1
  58. package/dist-types/commands/StartTaskCommand.d.ts +1 -1
  59. package/dist-types/commands/StopTaskCommand.d.ts +1 -1
  60. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  61. package/dist-types/commands/UpdateContainerAgentCommand.d.ts +1 -1
  62. package/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +1 -1
  63. package/dist-types/commands/UpdateDaemonCommand.d.ts +149 -0
  64. package/dist-types/commands/UpdateTaskProtectionCommand.d.ts +1 -1
  65. package/dist-types/commands/UpdateTaskSetCommand.d.ts +1 -1
  66. package/dist-types/commands/index.d.ts +12 -0
  67. package/dist-types/index.d.ts +1 -0
  68. package/dist-types/models/enums.d.ts +155 -60
  69. package/dist-types/models/errors.d.ts +32 -8
  70. package/dist-types/models/models_0.d.ts +2630 -2613
  71. package/dist-types/models/models_1.d.ts +1245 -0
  72. package/dist-types/schemas/schemas_0.d.ts +58 -0
  73. package/dist-types/ts3.4/ECS.d.ts +251 -0
  74. package/dist-types/ts3.4/ECSClient.d.ts +72 -0
  75. package/dist-types/ts3.4/commands/CreateDaemonCommand.d.ts +47 -0
  76. package/dist-types/ts3.4/commands/CreateTaskSetCommand.d.ts +1 -1
  77. package/dist-types/ts3.4/commands/DeleteDaemonCommand.d.ts +47 -0
  78. package/dist-types/ts3.4/commands/DeleteDaemonTaskDefinitionCommand.d.ts +51 -0
  79. package/dist-types/ts3.4/commands/DeleteTaskSetCommand.d.ts +1 -1
  80. package/dist-types/ts3.4/commands/DescribeDaemonCommand.d.ts +50 -0
  81. package/dist-types/ts3.4/commands/DescribeDaemonDeploymentsCommand.d.ts +51 -0
  82. package/dist-types/ts3.4/commands/DescribeDaemonRevisionsCommand.d.ts +51 -0
  83. package/dist-types/ts3.4/commands/DescribeDaemonTaskDefinitionCommand.d.ts +51 -0
  84. package/dist-types/ts3.4/commands/DescribeTaskSetsCommand.d.ts +1 -1
  85. package/dist-types/ts3.4/commands/DescribeTasksCommand.d.ts +1 -1
  86. package/dist-types/ts3.4/commands/GetTaskProtectionCommand.d.ts +1 -1
  87. package/dist-types/ts3.4/commands/ListDaemonDeploymentsCommand.d.ts +51 -0
  88. package/dist-types/ts3.4/commands/ListDaemonTaskDefinitionsCommand.d.ts +51 -0
  89. package/dist-types/ts3.4/commands/ListDaemonsCommand.d.ts +47 -0
  90. package/dist-types/ts3.4/commands/ListTaskDefinitionsCommand.d.ts +2 -4
  91. package/dist-types/ts3.4/commands/RegisterDaemonTaskDefinitionCommand.d.ts +51 -0
  92. package/dist-types/ts3.4/commands/RegisterTaskDefinitionCommand.d.ts +1 -1
  93. package/dist-types/ts3.4/commands/RunTaskCommand.d.ts +1 -1
  94. package/dist-types/ts3.4/commands/StartTaskCommand.d.ts +1 -1
  95. package/dist-types/ts3.4/commands/StopTaskCommand.d.ts +1 -1
  96. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  97. package/dist-types/ts3.4/commands/UpdateDaemonCommand.d.ts +47 -0
  98. package/dist-types/ts3.4/commands/UpdateTaskProtectionCommand.d.ts +1 -1
  99. package/dist-types/ts3.4/commands/UpdateTaskSetCommand.d.ts +1 -1
  100. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  101. package/dist-types/ts3.4/index.d.ts +1 -0
  102. package/dist-types/ts3.4/models/enums.d.ts +92 -40
  103. package/dist-types/ts3.4/models/errors.d.ts +21 -7
  104. package/dist-types/ts3.4/models/models_0.d.ts +338 -324
  105. package/dist-types/ts3.4/models/models_1.d.ts +322 -0
  106. package/dist-types/ts3.4/schemas/schemas_0.d.ts +58 -0
  107. package/dist-types/ts3.4/waiters/index.d.ts +5 -0
  108. package/dist-types/ts3.4/waiters/waitForDaemonActive.d.ts +11 -0
  109. package/dist-types/ts3.4/waiters/waitForDaemonDeploymentStopped.d.ts +11 -0
  110. package/dist-types/ts3.4/waiters/waitForDaemonDeploymentSuccessful.d.ts +11 -0
  111. package/dist-types/ts3.4/waiters/waitForDaemonTaskDefinitionActive.d.ts +11 -0
  112. package/dist-types/ts3.4/waiters/waitForDaemonTaskDefinitionDeleted.d.ts +11 -0
  113. package/dist-types/waiters/index.d.ts +5 -0
  114. package/dist-types/waiters/waitForDaemonActive.d.ts +14 -0
  115. package/dist-types/waiters/waitForDaemonDeploymentStopped.d.ts +14 -0
  116. package/dist-types/waiters/waitForDaemonDeploymentSuccessful.d.ts +14 -0
  117. package/dist-types/waiters/waitForDaemonTaskDefinitionActive.d.ts +14 -0
  118. package/dist-types/waiters/waitForDaemonTaskDefinitionDeleted.d.ts +14 -0
  119. package/package.json +6 -6
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ECSClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ECSClient";
8
+ import { UpdateDaemonRequest, UpdateDaemonResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UpdateDaemonCommandInput extends UpdateDaemonRequest {}
12
+ export interface UpdateDaemonCommandOutput
13
+ extends UpdateDaemonResponse,
14
+ __MetadataBearer {}
15
+ declare const UpdateDaemonCommand_base: {
16
+ new (
17
+ input: UpdateDaemonCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ UpdateDaemonCommandInput,
20
+ UpdateDaemonCommandOutput,
21
+ ECSClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: UpdateDaemonCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ UpdateDaemonCommandInput,
29
+ UpdateDaemonCommandOutput,
30
+ ECSClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class UpdateDaemonCommand extends UpdateDaemonCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: UpdateDaemonRequest;
40
+ output: UpdateDaemonResponse;
41
+ };
42
+ sdk: {
43
+ input: UpdateDaemonCommandInput;
44
+ output: UpdateDaemonCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  UpdateTaskProtectionRequest,
10
10
  UpdateTaskProtectionResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface UpdateTaskProtectionCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  UpdateTaskSetRequest,
10
10
  UpdateTaskSetResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface UpdateTaskSetCommandInput extends UpdateTaskSetRequest {}
@@ -1,5 +1,6 @@
1
1
  export * from "./CreateCapacityProviderCommand";
2
2
  export * from "./CreateClusterCommand";
3
+ export * from "./CreateDaemonCommand";
3
4
  export * from "./CreateExpressGatewayServiceCommand";
4
5
  export * from "./CreateServiceCommand";
5
6
  export * from "./CreateTaskSetCommand";
@@ -7,6 +8,8 @@ export * from "./DeleteAccountSettingCommand";
7
8
  export * from "./DeleteAttributesCommand";
8
9
  export * from "./DeleteCapacityProviderCommand";
9
10
  export * from "./DeleteClusterCommand";
11
+ export * from "./DeleteDaemonCommand";
12
+ export * from "./DeleteDaemonTaskDefinitionCommand";
10
13
  export * from "./DeleteExpressGatewayServiceCommand";
11
14
  export * from "./DeleteServiceCommand";
12
15
  export * from "./DeleteTaskDefinitionsCommand";
@@ -16,6 +19,10 @@ export * from "./DeregisterTaskDefinitionCommand";
16
19
  export * from "./DescribeCapacityProvidersCommand";
17
20
  export * from "./DescribeClustersCommand";
18
21
  export * from "./DescribeContainerInstancesCommand";
22
+ export * from "./DescribeDaemonCommand";
23
+ export * from "./DescribeDaemonDeploymentsCommand";
24
+ export * from "./DescribeDaemonRevisionsCommand";
25
+ export * from "./DescribeDaemonTaskDefinitionCommand";
19
26
  export * from "./DescribeExpressGatewayServiceCommand";
20
27
  export * from "./DescribeServiceDeploymentsCommand";
21
28
  export * from "./DescribeServiceRevisionsCommand";
@@ -30,6 +37,9 @@ export * from "./ListAccountSettingsCommand";
30
37
  export * from "./ListAttributesCommand";
31
38
  export * from "./ListClustersCommand";
32
39
  export * from "./ListContainerInstancesCommand";
40
+ export * from "./ListDaemonDeploymentsCommand";
41
+ export * from "./ListDaemonTaskDefinitionsCommand";
42
+ export * from "./ListDaemonsCommand";
33
43
  export * from "./ListServiceDeploymentsCommand";
34
44
  export * from "./ListServicesByNamespaceCommand";
35
45
  export * from "./ListServicesCommand";
@@ -42,6 +52,7 @@ export * from "./PutAccountSettingDefaultCommand";
42
52
  export * from "./PutAttributesCommand";
43
53
  export * from "./PutClusterCapacityProvidersCommand";
44
54
  export * from "./RegisterContainerInstanceCommand";
55
+ export * from "./RegisterDaemonTaskDefinitionCommand";
45
56
  export * from "./RegisterTaskDefinitionCommand";
46
57
  export * from "./RunTaskCommand";
47
58
  export * from "./StartTaskCommand";
@@ -57,6 +68,7 @@ export * from "./UpdateClusterCommand";
57
68
  export * from "./UpdateClusterSettingsCommand";
58
69
  export * from "./UpdateContainerAgentCommand";
59
70
  export * from "./UpdateContainerInstancesStateCommand";
71
+ export * from "./UpdateDaemonCommand";
60
72
  export * from "./UpdateExpressGatewayServiceCommand";
61
73
  export * from "./UpdateServiceCommand";
62
74
  export * from "./UpdateServicePrimaryTaskSetCommand";
@@ -10,4 +10,5 @@ export * from "./waiters";
10
10
  export * from "./models/enums";
11
11
  export * from "./models/errors";
12
12
  export * from "./models/models_0";
13
+ export * from "./models/models_1";
13
14
  export { ECSServiceException } from "./models/ECSServiceException";
@@ -186,7 +186,9 @@ export declare const InstanceHealthCheckState: {
186
186
  export type InstanceHealthCheckState =
187
187
  (typeof InstanceHealthCheckState)[keyof typeof InstanceHealthCheckState];
188
188
  export declare const InstanceHealthCheckType: {
189
+ readonly ACCELERATED_COMPUTE: "ACCELERATED_COMPUTE";
189
190
  readonly CONTAINER_RUNTIME: "CONTAINER_RUNTIME";
191
+ readonly DAEMON: "DAEMON";
190
192
  };
191
193
  export type InstanceHealthCheckType =
192
194
  (typeof InstanceHealthCheckType)[keyof typeof InstanceHealthCheckType];
@@ -242,32 +244,37 @@ export declare const PlatformDeviceType: {
242
244
  };
243
245
  export type PlatformDeviceType =
244
246
  (typeof PlatformDeviceType)[keyof typeof PlatformDeviceType];
245
- export declare const SettingName: {
246
- readonly AWSVPC_TRUNKING: "awsvpcTrunking";
247
- readonly CONTAINER_INSIGHTS: "containerInsights";
248
- readonly CONTAINER_INSTANCE_LONG_ARN_FORMAT: "containerInstanceLongArnFormat";
249
- readonly DEFAULT_LOG_DRIVER_MODE: "defaultLogDriverMode";
250
- readonly FARGATE_EVENT_WINDOWS: "fargateEventWindows";
251
- readonly FARGATE_FIPS_MODE: "fargateFIPSMode";
252
- readonly FARGATE_TASK_RETIREMENT_WAIT_PERIOD: "fargateTaskRetirementWaitPeriod";
253
- readonly GUARD_DUTY_ACTIVATE: "guardDutyActivate";
254
- readonly SERVICE_LONG_ARN_FORMAT: "serviceLongArnFormat";
255
- readonly TAG_RESOURCE_AUTHORIZATION: "tagResourceAuthorization";
256
- readonly TASK_LONG_ARN_FORMAT: "taskLongArnFormat";
247
+ export declare const DaemonDeploymentRollbackMonitorsStatus: {
248
+ readonly DISABLED: "DISABLED";
249
+ readonly MONITORING: "MONITORING";
250
+ readonly MONITORING_COMPLETE: "MONITORING_COMPLETE";
251
+ readonly TRIGGERED: "TRIGGERED";
257
252
  };
258
- export type SettingName = (typeof SettingName)[keyof typeof SettingName];
259
- export declare const SettingType: {
260
- readonly AWS_MANAGED: "aws_managed";
261
- readonly USER: "user";
253
+ export type DaemonDeploymentRollbackMonitorsStatus =
254
+ (typeof DaemonDeploymentRollbackMonitorsStatus)[keyof typeof DaemonDeploymentRollbackMonitorsStatus];
255
+ export declare const DaemonDeploymentStatus: {
256
+ readonly IN_PROGRESS: "IN_PROGRESS";
257
+ readonly PENDING: "PENDING";
258
+ readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
259
+ readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
260
+ readonly ROLLBACK_SUCCESSFUL: "ROLLBACK_SUCCESSFUL";
261
+ readonly STOPPED: "STOPPED";
262
+ readonly STOP_REQUESTED: "STOP_REQUESTED";
263
+ readonly SUCCESSFUL: "SUCCESSFUL";
262
264
  };
263
- export type SettingType = (typeof SettingType)[keyof typeof SettingType];
264
- export declare const Compatibility: {
265
- readonly EC2: "EC2";
266
- readonly EXTERNAL: "EXTERNAL";
267
- readonly FARGATE: "FARGATE";
268
- readonly MANAGED_INSTANCES: "MANAGED_INSTANCES";
265
+ export type DaemonDeploymentStatus =
266
+ (typeof DaemonDeploymentStatus)[keyof typeof DaemonDeploymentStatus];
267
+ export declare const DaemonPropagateTags: {
268
+ readonly DAEMON: "DAEMON";
269
+ readonly NONE: "NONE";
269
270
  };
270
- export type Compatibility = (typeof Compatibility)[keyof typeof Compatibility];
271
+ export type DaemonPropagateTags =
272
+ (typeof DaemonPropagateTags)[keyof typeof DaemonPropagateTags];
273
+ export declare const DaemonStatus: {
274
+ readonly ACTIVE: "ACTIVE";
275
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
276
+ };
277
+ export type DaemonStatus = (typeof DaemonStatus)[keyof typeof DaemonStatus];
271
278
  export declare const ContainerCondition: {
272
279
  readonly COMPLETE: "COMPLETE";
273
280
  readonly HEALTHY: "HEALTHY";
@@ -305,18 +312,6 @@ export declare const LogDriver: {
305
312
  readonly SYSLOG: "syslog";
306
313
  };
307
314
  export type LogDriver = (typeof LogDriver)[keyof typeof LogDriver];
308
- export declare const ApplicationProtocol: {
309
- readonly GRPC: "grpc";
310
- readonly HTTP: "http";
311
- readonly HTTP2: "http2";
312
- };
313
- export type ApplicationProtocol =
314
- (typeof ApplicationProtocol)[keyof typeof ApplicationProtocol];
315
- export declare const ResourceType: {
316
- readonly GPU: "GPU";
317
- readonly INFERENCE_ACCELERATOR: "InferenceAccelerator";
318
- };
319
- export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
320
315
  export declare const UlimitName: {
321
316
  readonly CORE: "core";
322
317
  readonly CPU: "cpu";
@@ -335,6 +330,68 @@ export declare const UlimitName: {
335
330
  readonly STACK: "stack";
336
331
  };
337
332
  export type UlimitName = (typeof UlimitName)[keyof typeof UlimitName];
333
+ export declare const DaemonTaskDefinitionStatus: {
334
+ readonly ACTIVE: "ACTIVE";
335
+ readonly DELETED: "DELETED";
336
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
337
+ };
338
+ export type DaemonTaskDefinitionStatus =
339
+ (typeof DaemonTaskDefinitionStatus)[keyof typeof DaemonTaskDefinitionStatus];
340
+ export declare const DaemonTaskDefinitionRevisionFilter: {
341
+ readonly LAST_REGISTERED: "LAST_REGISTERED";
342
+ };
343
+ export type DaemonTaskDefinitionRevisionFilter =
344
+ (typeof DaemonTaskDefinitionRevisionFilter)[keyof typeof DaemonTaskDefinitionRevisionFilter];
345
+ export declare const SortOrder: {
346
+ readonly ASC: "ASC";
347
+ readonly DESC: "DESC";
348
+ };
349
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
350
+ export declare const DaemonTaskDefinitionStatusFilter: {
351
+ readonly ACTIVE: "ACTIVE";
352
+ readonly ALL: "ALL";
353
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
354
+ };
355
+ export type DaemonTaskDefinitionStatusFilter =
356
+ (typeof DaemonTaskDefinitionStatusFilter)[keyof typeof DaemonTaskDefinitionStatusFilter];
357
+ export declare const SettingName: {
358
+ readonly AWSVPC_TRUNKING: "awsvpcTrunking";
359
+ readonly CONTAINER_INSIGHTS: "containerInsights";
360
+ readonly CONTAINER_INSTANCE_LONG_ARN_FORMAT: "containerInstanceLongArnFormat";
361
+ readonly DEFAULT_LOG_DRIVER_MODE: "defaultLogDriverMode";
362
+ readonly FARGATE_EVENT_WINDOWS: "fargateEventWindows";
363
+ readonly FARGATE_FIPS_MODE: "fargateFIPSMode";
364
+ readonly FARGATE_TASK_RETIREMENT_WAIT_PERIOD: "fargateTaskRetirementWaitPeriod";
365
+ readonly GUARD_DUTY_ACTIVATE: "guardDutyActivate";
366
+ readonly SERVICE_LONG_ARN_FORMAT: "serviceLongArnFormat";
367
+ readonly TAG_RESOURCE_AUTHORIZATION: "tagResourceAuthorization";
368
+ readonly TASK_LONG_ARN_FORMAT: "taskLongArnFormat";
369
+ };
370
+ export type SettingName = (typeof SettingName)[keyof typeof SettingName];
371
+ export declare const SettingType: {
372
+ readonly AWS_MANAGED: "aws_managed";
373
+ readonly USER: "user";
374
+ };
375
+ export type SettingType = (typeof SettingType)[keyof typeof SettingType];
376
+ export declare const Compatibility: {
377
+ readonly EC2: "EC2";
378
+ readonly EXTERNAL: "EXTERNAL";
379
+ readonly FARGATE: "FARGATE";
380
+ readonly MANAGED_INSTANCES: "MANAGED_INSTANCES";
381
+ };
382
+ export type Compatibility = (typeof Compatibility)[keyof typeof Compatibility];
383
+ export declare const ApplicationProtocol: {
384
+ readonly GRPC: "grpc";
385
+ readonly HTTP: "http";
386
+ readonly HTTP2: "http2";
387
+ };
388
+ export type ApplicationProtocol =
389
+ (typeof ApplicationProtocol)[keyof typeof ApplicationProtocol];
390
+ export declare const ResourceType: {
391
+ readonly GPU: "GPU";
392
+ readonly INFERENCE_ACCELERATOR: "InferenceAccelerator";
393
+ };
394
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
338
395
  export declare const VersionConsistency: {
339
396
  readonly DISABLED: "disabled";
340
397
  readonly ENABLED: "enabled";
@@ -608,11 +665,6 @@ export declare const ManagedResourceStatus: {
608
665
  };
609
666
  export type ManagedResourceStatus =
610
667
  (typeof ManagedResourceStatus)[keyof typeof ManagedResourceStatus];
611
- export declare const SortOrder: {
612
- readonly ASC: "ASC";
613
- readonly DESC: "DESC";
614
- };
615
- export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
616
668
  export declare const TaskField: {
617
669
  readonly TAGS: "TAGS";
618
670
  };
@@ -148,6 +148,27 @@ export declare class NoUpdateAvailableException extends __BaseException {
148
148
  opts: __ExceptionOptionType<NoUpdateAvailableException, __BaseException>
149
149
  );
150
150
  }
151
+ export declare class PlatformUnknownException extends __BaseException {
152
+ readonly name: "PlatformUnknownException";
153
+ readonly $fault: "client";
154
+ constructor(
155
+ opts: __ExceptionOptionType<PlatformUnknownException, __BaseException>
156
+ );
157
+ }
158
+ export declare class DaemonNotActiveException extends __BaseException {
159
+ readonly name: "DaemonNotActiveException";
160
+ readonly $fault: "client";
161
+ constructor(
162
+ opts: __ExceptionOptionType<DaemonNotActiveException, __BaseException>
163
+ );
164
+ }
165
+ export declare class DaemonNotFoundException extends __BaseException {
166
+ readonly name: "DaemonNotFoundException";
167
+ readonly $fault: "client";
168
+ constructor(
169
+ opts: __ExceptionOptionType<DaemonNotFoundException, __BaseException>
170
+ );
171
+ }
151
172
  export declare class PlatformTaskDefinitionIncompatibilityException extends __BaseException {
152
173
  readonly name: "PlatformTaskDefinitionIncompatibilityException";
153
174
  readonly $fault: "client";
@@ -158,13 +179,6 @@ export declare class PlatformTaskDefinitionIncompatibilityException extends __Ba
158
179
  >
159
180
  );
160
181
  }
161
- export declare class PlatformUnknownException extends __BaseException {
162
- readonly name: "PlatformUnknownException";
163
- readonly $fault: "client";
164
- constructor(
165
- opts: __ExceptionOptionType<PlatformUnknownException, __BaseException>
166
- );
167
- }
168
182
  export declare class ServiceNotActiveException extends __BaseException {
169
183
  readonly name: "ServiceNotActiveException";
170
184
  readonly $fault: "client";