@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 { CreateDaemonRequest, CreateDaemonResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface CreateDaemonCommandInput extends CreateDaemonRequest {}
12
+ export interface CreateDaemonCommandOutput
13
+ extends CreateDaemonResponse,
14
+ __MetadataBearer {}
15
+ declare const CreateDaemonCommand_base: {
16
+ new (
17
+ input: CreateDaemonCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ CreateDaemonCommandInput,
20
+ CreateDaemonCommandOutput,
21
+ ECSClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: CreateDaemonCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ CreateDaemonCommandInput,
29
+ CreateDaemonCommandOutput,
30
+ ECSClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class CreateDaemonCommand extends CreateDaemonCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: CreateDaemonRequest;
40
+ output: CreateDaemonResponse;
41
+ };
42
+ sdk: {
43
+ input: CreateDaemonCommandInput;
44
+ output: CreateDaemonCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  CreateTaskSetRequest,
10
10
  CreateTaskSetResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface CreateTaskSetCommandInput extends CreateTaskSetRequest {}
@@ -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 { DeleteDaemonRequest, DeleteDaemonResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteDaemonCommandInput extends DeleteDaemonRequest {}
12
+ export interface DeleteDaemonCommandOutput
13
+ extends DeleteDaemonResponse,
14
+ __MetadataBearer {}
15
+ declare const DeleteDaemonCommand_base: {
16
+ new (
17
+ input: DeleteDaemonCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeleteDaemonCommandInput,
20
+ DeleteDaemonCommandOutput,
21
+ ECSClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: DeleteDaemonCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeleteDaemonCommandInput,
29
+ DeleteDaemonCommandOutput,
30
+ ECSClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeleteDaemonCommand extends DeleteDaemonCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DeleteDaemonRequest;
40
+ output: DeleteDaemonResponse;
41
+ };
42
+ sdk: {
43
+ input: DeleteDaemonCommandInput;
44
+ output: DeleteDaemonCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
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 {
9
+ DeleteDaemonTaskDefinitionRequest,
10
+ DeleteDaemonTaskDefinitionResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteDaemonTaskDefinitionCommandInput
15
+ extends DeleteDaemonTaskDefinitionRequest {}
16
+ export interface DeleteDaemonTaskDefinitionCommandOutput
17
+ extends DeleteDaemonTaskDefinitionResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteDaemonTaskDefinitionCommand_base: {
20
+ new (
21
+ input: DeleteDaemonTaskDefinitionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteDaemonTaskDefinitionCommandInput,
24
+ DeleteDaemonTaskDefinitionCommandOutput,
25
+ ECSClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteDaemonTaskDefinitionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteDaemonTaskDefinitionCommandInput,
33
+ DeleteDaemonTaskDefinitionCommandOutput,
34
+ ECSClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteDaemonTaskDefinitionCommand extends DeleteDaemonTaskDefinitionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteDaemonTaskDefinitionRequest;
44
+ output: DeleteDaemonTaskDefinitionResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteDaemonTaskDefinitionCommandInput;
48
+ output: DeleteDaemonTaskDefinitionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  DeleteTaskSetRequest,
10
10
  DeleteTaskSetResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface DeleteTaskSetCommandInput extends DeleteTaskSetRequest {}
@@ -0,0 +1,50 @@
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 {
9
+ DescribeDaemonRequest,
10
+ DescribeDaemonResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeDaemonCommandInput extends DescribeDaemonRequest {}
15
+ export interface DescribeDaemonCommandOutput
16
+ extends DescribeDaemonResponse,
17
+ __MetadataBearer {}
18
+ declare const DescribeDaemonCommand_base: {
19
+ new (
20
+ input: DescribeDaemonCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DescribeDaemonCommandInput,
23
+ DescribeDaemonCommandOutput,
24
+ ECSClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: DescribeDaemonCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DescribeDaemonCommandInput,
32
+ DescribeDaemonCommandOutput,
33
+ ECSClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DescribeDaemonCommand extends DescribeDaemonCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DescribeDaemonRequest;
43
+ output: DescribeDaemonResponse;
44
+ };
45
+ sdk: {
46
+ input: DescribeDaemonCommandInput;
47
+ output: DescribeDaemonCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
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 {
9
+ DescribeDaemonDeploymentsRequest,
10
+ DescribeDaemonDeploymentsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeDaemonDeploymentsCommandInput
15
+ extends DescribeDaemonDeploymentsRequest {}
16
+ export interface DescribeDaemonDeploymentsCommandOutput
17
+ extends DescribeDaemonDeploymentsResponse,
18
+ __MetadataBearer {}
19
+ declare const DescribeDaemonDeploymentsCommand_base: {
20
+ new (
21
+ input: DescribeDaemonDeploymentsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DescribeDaemonDeploymentsCommandInput,
24
+ DescribeDaemonDeploymentsCommandOutput,
25
+ ECSClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DescribeDaemonDeploymentsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DescribeDaemonDeploymentsCommandInput,
33
+ DescribeDaemonDeploymentsCommandOutput,
34
+ ECSClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DescribeDaemonDeploymentsCommand extends DescribeDaemonDeploymentsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeDaemonDeploymentsRequest;
44
+ output: DescribeDaemonDeploymentsResponse;
45
+ };
46
+ sdk: {
47
+ input: DescribeDaemonDeploymentsCommandInput;
48
+ output: DescribeDaemonDeploymentsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
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 {
9
+ DescribeDaemonRevisionsRequest,
10
+ DescribeDaemonRevisionsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeDaemonRevisionsCommandInput
15
+ extends DescribeDaemonRevisionsRequest {}
16
+ export interface DescribeDaemonRevisionsCommandOutput
17
+ extends DescribeDaemonRevisionsResponse,
18
+ __MetadataBearer {}
19
+ declare const DescribeDaemonRevisionsCommand_base: {
20
+ new (
21
+ input: DescribeDaemonRevisionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DescribeDaemonRevisionsCommandInput,
24
+ DescribeDaemonRevisionsCommandOutput,
25
+ ECSClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DescribeDaemonRevisionsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DescribeDaemonRevisionsCommandInput,
33
+ DescribeDaemonRevisionsCommandOutput,
34
+ ECSClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DescribeDaemonRevisionsCommand extends DescribeDaemonRevisionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeDaemonRevisionsRequest;
44
+ output: DescribeDaemonRevisionsResponse;
45
+ };
46
+ sdk: {
47
+ input: DescribeDaemonRevisionsCommandInput;
48
+ output: DescribeDaemonRevisionsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
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 {
9
+ DescribeDaemonTaskDefinitionRequest,
10
+ DescribeDaemonTaskDefinitionResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeDaemonTaskDefinitionCommandInput
15
+ extends DescribeDaemonTaskDefinitionRequest {}
16
+ export interface DescribeDaemonTaskDefinitionCommandOutput
17
+ extends DescribeDaemonTaskDefinitionResponse,
18
+ __MetadataBearer {}
19
+ declare const DescribeDaemonTaskDefinitionCommand_base: {
20
+ new (
21
+ input: DescribeDaemonTaskDefinitionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DescribeDaemonTaskDefinitionCommandInput,
24
+ DescribeDaemonTaskDefinitionCommandOutput,
25
+ ECSClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DescribeDaemonTaskDefinitionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DescribeDaemonTaskDefinitionCommandInput,
33
+ DescribeDaemonTaskDefinitionCommandOutput,
34
+ ECSClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DescribeDaemonTaskDefinitionCommand extends DescribeDaemonTaskDefinitionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeDaemonTaskDefinitionRequest;
44
+ output: DescribeDaemonTaskDefinitionResponse;
45
+ };
46
+ sdk: {
47
+ input: DescribeDaemonTaskDefinitionCommandInput;
48
+ output: DescribeDaemonTaskDefinitionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  DescribeTaskSetsRequest,
10
10
  DescribeTaskSetsResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface DescribeTaskSetsCommandInput extends DescribeTaskSetsRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  DescribeTasksRequest,
10
10
  DescribeTasksResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface DescribeTasksCommandInput extends DescribeTasksRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  GetTaskProtectionRequest,
10
10
  GetTaskProtectionResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface GetTaskProtectionCommandInput
@@ -0,0 +1,51 @@
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 {
9
+ ListDaemonDeploymentsRequest,
10
+ ListDaemonDeploymentsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListDaemonDeploymentsCommandInput
15
+ extends ListDaemonDeploymentsRequest {}
16
+ export interface ListDaemonDeploymentsCommandOutput
17
+ extends ListDaemonDeploymentsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListDaemonDeploymentsCommand_base: {
20
+ new (
21
+ input: ListDaemonDeploymentsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListDaemonDeploymentsCommandInput,
24
+ ListDaemonDeploymentsCommandOutput,
25
+ ECSClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListDaemonDeploymentsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListDaemonDeploymentsCommandInput,
33
+ ListDaemonDeploymentsCommandOutput,
34
+ ECSClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListDaemonDeploymentsCommand extends ListDaemonDeploymentsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListDaemonDeploymentsRequest;
44
+ output: ListDaemonDeploymentsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListDaemonDeploymentsCommandInput;
48
+ output: ListDaemonDeploymentsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
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 {
9
+ ListDaemonTaskDefinitionsRequest,
10
+ ListDaemonTaskDefinitionsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListDaemonTaskDefinitionsCommandInput
15
+ extends ListDaemonTaskDefinitionsRequest {}
16
+ export interface ListDaemonTaskDefinitionsCommandOutput
17
+ extends ListDaemonTaskDefinitionsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListDaemonTaskDefinitionsCommand_base: {
20
+ new (
21
+ input: ListDaemonTaskDefinitionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListDaemonTaskDefinitionsCommandInput,
24
+ ListDaemonTaskDefinitionsCommandOutput,
25
+ ECSClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListDaemonTaskDefinitionsCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListDaemonTaskDefinitionsCommandInput,
33
+ ListDaemonTaskDefinitionsCommandOutput,
34
+ ECSClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListDaemonTaskDefinitionsCommand extends ListDaemonTaskDefinitionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListDaemonTaskDefinitionsRequest;
44
+ output: ListDaemonTaskDefinitionsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListDaemonTaskDefinitionsCommandInput;
48
+ output: ListDaemonTaskDefinitionsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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 { ListDaemonsRequest, ListDaemonsResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListDaemonsCommandInput extends ListDaemonsRequest {}
12
+ export interface ListDaemonsCommandOutput
13
+ extends ListDaemonsResponse,
14
+ __MetadataBearer {}
15
+ declare const ListDaemonsCommand_base: {
16
+ new (
17
+ input: ListDaemonsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListDaemonsCommandInput,
20
+ ListDaemonsCommandOutput,
21
+ ECSClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ ...[input]: [] | [ListDaemonsCommandInput]
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListDaemonsCommandInput,
29
+ ListDaemonsCommandOutput,
30
+ ECSClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListDaemonsCommand extends ListDaemonsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListDaemonsRequest;
40
+ output: ListDaemonsResponse;
41
+ };
42
+ sdk: {
43
+ input: ListDaemonsCommandInput;
44
+ output: ListDaemonsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ECSClient";
8
- import {
9
- ListTaskDefinitionsRequest,
10
- ListTaskDefinitionsResponse,
11
- } from "../models/models_0";
8
+ import { ListTaskDefinitionsRequest } from "../models/models_0";
9
+ import { ListTaskDefinitionsResponse } from "../models/models_1";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface ListTaskDefinitionsCommandInput
@@ -0,0 +1,51 @@
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 {
9
+ RegisterDaemonTaskDefinitionRequest,
10
+ RegisterDaemonTaskDefinitionResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface RegisterDaemonTaskDefinitionCommandInput
15
+ extends RegisterDaemonTaskDefinitionRequest {}
16
+ export interface RegisterDaemonTaskDefinitionCommandOutput
17
+ extends RegisterDaemonTaskDefinitionResponse,
18
+ __MetadataBearer {}
19
+ declare const RegisterDaemonTaskDefinitionCommand_base: {
20
+ new (
21
+ input: RegisterDaemonTaskDefinitionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ RegisterDaemonTaskDefinitionCommandInput,
24
+ RegisterDaemonTaskDefinitionCommandOutput,
25
+ ECSClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: RegisterDaemonTaskDefinitionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ RegisterDaemonTaskDefinitionCommandInput,
33
+ RegisterDaemonTaskDefinitionCommandOutput,
34
+ ECSClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class RegisterDaemonTaskDefinitionCommand extends RegisterDaemonTaskDefinitionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: RegisterDaemonTaskDefinitionRequest;
44
+ output: RegisterDaemonTaskDefinitionResponse;
45
+ };
46
+ sdk: {
47
+ input: RegisterDaemonTaskDefinitionCommandInput;
48
+ output: RegisterDaemonTaskDefinitionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  RegisterTaskDefinitionRequest,
10
10
  RegisterTaskDefinitionResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface RegisterTaskDefinitionCommandInput
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ECSClient";
8
- import { RunTaskRequest, RunTaskResponse } from "../models/models_0";
8
+ import { RunTaskRequest, RunTaskResponse } from "../models/models_1";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface RunTaskCommandInput extends RunTaskRequest {}
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ECSClient";
8
- import { StartTaskRequest, StartTaskResponse } from "../models/models_0";
8
+ import { StartTaskRequest, StartTaskResponse } from "../models/models_1";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface StartTaskCommandInput extends StartTaskRequest {}
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ECSClient";
8
- import { StopTaskRequest, StopTaskResponse } from "../models/models_0";
8
+ import { StopTaskRequest, StopTaskResponse } from "../models/models_1";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface StopTaskCommandInput extends StopTaskRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  UntagResourceRequest,
10
10
  UntagResourceResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface UntagResourceCommandInput extends UntagResourceRequest {}