@aws-sdk/client-ecs 3.682.0 → 3.686.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 (90) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/index.js +254 -11
  3. package/dist-es/ECS.js +6 -0
  4. package/dist-es/commands/DescribeServiceDeploymentsCommand.js +22 -0
  5. package/dist-es/commands/DescribeServiceRevisionsCommand.js +22 -0
  6. package/dist-es/commands/ListServiceDeploymentsCommand.js +22 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/models_0.js +16 -24
  9. package/dist-es/models/models_1.js +25 -1
  10. package/dist-es/protocols/Aws_json1_1.js +178 -1
  11. package/dist-types/ECS.d.ts +21 -0
  12. package/dist-types/ECSClient.d.ts +5 -2
  13. package/dist-types/commands/CreateCapacityProviderCommand.d.ts +1 -1
  14. package/dist-types/commands/CreateClusterCommand.d.ts +2 -2
  15. package/dist-types/commands/CreateServiceCommand.d.ts +4 -4
  16. package/dist-types/commands/CreateTaskSetCommand.d.ts +1 -1
  17. package/dist-types/commands/DeleteAccountSettingCommand.d.ts +1 -1
  18. package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +1 -1
  19. package/dist-types/commands/DeleteClusterCommand.d.ts +1 -1
  20. package/dist-types/commands/DeleteServiceCommand.d.ts +2 -2
  21. package/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +1 -1
  22. package/dist-types/commands/DeleteTaskSetCommand.d.ts +1 -1
  23. package/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +1 -1
  24. package/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +1 -1
  25. package/dist-types/commands/DescribeCapacityProvidersCommand.d.ts +1 -1
  26. package/dist-types/commands/DescribeClustersCommand.d.ts +1 -1
  27. package/dist-types/commands/DescribeContainerInstancesCommand.d.ts +1 -1
  28. package/dist-types/commands/DescribeServiceDeploymentsCommand.d.ts +177 -0
  29. package/dist-types/commands/DescribeServiceRevisionsCommand.d.ts +243 -0
  30. package/dist-types/commands/DescribeServicesCommand.d.ts +2 -2
  31. package/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +1 -1
  32. package/dist-types/commands/DescribeTaskSetsCommand.d.ts +1 -1
  33. package/dist-types/commands/DescribeTasksCommand.d.ts +1 -1
  34. package/dist-types/commands/DiscoverPollEndpointCommand.d.ts +1 -1
  35. package/dist-types/commands/ExecuteCommandCommand.d.ts +1 -1
  36. package/dist-types/commands/GetTaskProtectionCommand.d.ts +1 -1
  37. package/dist-types/commands/ListAccountSettingsCommand.d.ts +1 -1
  38. package/dist-types/commands/ListClustersCommand.d.ts +1 -1
  39. package/dist-types/commands/ListContainerInstancesCommand.d.ts +1 -1
  40. package/dist-types/commands/ListServiceDeploymentsCommand.d.ts +130 -0
  41. package/dist-types/commands/ListServicesByNamespaceCommand.d.ts +1 -1
  42. package/dist-types/commands/ListServicesCommand.d.ts +1 -1
  43. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  44. package/dist-types/commands/ListTaskDefinitionFamiliesCommand.d.ts +1 -1
  45. package/dist-types/commands/ListTaskDefinitionsCommand.d.ts +1 -1
  46. package/dist-types/commands/ListTasksCommand.d.ts +1 -1
  47. package/dist-types/commands/PutAccountSettingCommand.d.ts +1 -1
  48. package/dist-types/commands/PutAccountSettingDefaultCommand.d.ts +1 -1
  49. package/dist-types/commands/PutClusterCapacityProvidersCommand.d.ts +1 -1
  50. package/dist-types/commands/RegisterContainerInstanceCommand.d.ts +1 -1
  51. package/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +1 -1
  52. package/dist-types/commands/RunTaskCommand.d.ts +1 -1
  53. package/dist-types/commands/StartTaskCommand.d.ts +1 -1
  54. package/dist-types/commands/StopTaskCommand.d.ts +1 -1
  55. package/dist-types/commands/SubmitAttachmentStateChangesCommand.d.ts +1 -1
  56. package/dist-types/commands/SubmitContainerStateChangeCommand.d.ts +1 -1
  57. package/dist-types/commands/SubmitTaskStateChangeCommand.d.ts +1 -1
  58. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  59. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  60. package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +1 -1
  61. package/dist-types/commands/UpdateClusterCommand.d.ts +2 -2
  62. package/dist-types/commands/UpdateClusterSettingsCommand.d.ts +2 -2
  63. package/dist-types/commands/UpdateContainerAgentCommand.d.ts +2 -2
  64. package/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +2 -2
  65. package/dist-types/commands/UpdateServiceCommand.d.ts +4 -4
  66. package/dist-types/commands/UpdateServicePrimaryTaskSetCommand.d.ts +2 -2
  67. package/dist-types/commands/UpdateTaskProtectionCommand.d.ts +2 -2
  68. package/dist-types/commands/UpdateTaskSetCommand.d.ts +2 -3
  69. package/dist-types/commands/index.d.ts +3 -0
  70. package/dist-types/models/models_0.d.ts +3009 -2904
  71. package/dist-types/models/models_1.d.ts +517 -1
  72. package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
  73. package/dist-types/ts3.4/ECS.d.ts +51 -0
  74. package/dist-types/ts3.4/ECSClient.d.ts +18 -0
  75. package/dist-types/ts3.4/commands/DescribeServiceDeploymentsCommand.d.ts +51 -0
  76. package/dist-types/ts3.4/commands/DescribeServiceRevisionsCommand.d.ts +51 -0
  77. package/dist-types/ts3.4/commands/ListServiceDeploymentsCommand.d.ts +51 -0
  78. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +1 -1
  79. package/dist-types/ts3.4/commands/UpdateClusterSettingsCommand.d.ts +1 -1
  80. package/dist-types/ts3.4/commands/UpdateContainerAgentCommand.d.ts +1 -1
  81. package/dist-types/ts3.4/commands/UpdateContainerInstancesStateCommand.d.ts +1 -1
  82. package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +1 -1
  83. package/dist-types/ts3.4/commands/UpdateServicePrimaryTaskSetCommand.d.ts +1 -1
  84. package/dist-types/ts3.4/commands/UpdateTaskProtectionCommand.d.ts +1 -1
  85. package/dist-types/ts3.4/commands/UpdateTaskSetCommand.d.ts +4 -2
  86. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  87. package/dist-types/ts3.4/models/models_0.d.ts +125 -95
  88. package/dist-types/ts3.4/models/models_1.d.ts +119 -1
  89. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
  90. package/package.json +36 -36
@@ -0,0 +1,130 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
4
+ import { ListServiceDeploymentsRequest, ListServiceDeploymentsResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListServiceDeploymentsCommand}.
14
+ */
15
+ export interface ListServiceDeploymentsCommandInput extends ListServiceDeploymentsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListServiceDeploymentsCommand}.
21
+ */
22
+ export interface ListServiceDeploymentsCommandOutput extends ListServiceDeploymentsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListServiceDeploymentsCommand_base: {
25
+ new (input: ListServiceDeploymentsCommandInput): import("@smithy/smithy-client").CommandImpl<ListServiceDeploymentsCommandInput, ListServiceDeploymentsCommandOutput, ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: ListServiceDeploymentsCommandInput): import("@smithy/smithy-client").CommandImpl<ListServiceDeploymentsCommandInput, ListServiceDeploymentsCommandOutput, ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>This operation lists all the service deployments that meet the specified filter criteria.</p>
31
+ * <p>A service deployment happens when you release a softwre update for the service. You
32
+ * route traffic from the running service revisions to the new service revison and control
33
+ * the number of running tasks. </p>
34
+ * <p>This API returns the values that you use for the request parameters in <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_DescribeServiceRevisions.html">DescribeServiceRevisions</a>.</p>
35
+ * @example
36
+ * Use a bare-bones client and the command you need to make an API call.
37
+ * ```javascript
38
+ * import { ECSClient, ListServiceDeploymentsCommand } from "@aws-sdk/client-ecs"; // ES Modules import
39
+ * // const { ECSClient, ListServiceDeploymentsCommand } = require("@aws-sdk/client-ecs"); // CommonJS import
40
+ * const client = new ECSClient(config);
41
+ * const input = { // ListServiceDeploymentsRequest
42
+ * service: "STRING_VALUE", // required
43
+ * cluster: "STRING_VALUE",
44
+ * status: [ // ServiceDeploymentStatusList
45
+ * "PENDING" || "SUCCESSFUL" || "STOPPED" || "STOP_REQUESTED" || "IN_PROGRESS" || "ROLLBACK_IN_PROGRESS" || "ROLLBACK_SUCCESSFUL" || "ROLLBACK_FAILED",
46
+ * ],
47
+ * createdAt: { // CreatedAt
48
+ * before: new Date("TIMESTAMP"),
49
+ * after: new Date("TIMESTAMP"),
50
+ * },
51
+ * nextToken: "STRING_VALUE",
52
+ * maxResults: Number("int"),
53
+ * };
54
+ * const command = new ListServiceDeploymentsCommand(input);
55
+ * const response = await client.send(command);
56
+ * // { // ListServiceDeploymentsResponse
57
+ * // serviceDeployments: [ // ServiceDeploymentsBrief
58
+ * // { // ServiceDeploymentBrief
59
+ * // serviceDeploymentArn: "STRING_VALUE",
60
+ * // serviceArn: "STRING_VALUE",
61
+ * // clusterArn: "STRING_VALUE",
62
+ * // startedAt: new Date("TIMESTAMP"),
63
+ * // createdAt: new Date("TIMESTAMP"),
64
+ * // finishedAt: new Date("TIMESTAMP"),
65
+ * // targetServiceRevisionArn: "STRING_VALUE",
66
+ * // status: "PENDING" || "SUCCESSFUL" || "STOPPED" || "STOP_REQUESTED" || "IN_PROGRESS" || "ROLLBACK_IN_PROGRESS" || "ROLLBACK_SUCCESSFUL" || "ROLLBACK_FAILED",
67
+ * // statusReason: "STRING_VALUE",
68
+ * // },
69
+ * // ],
70
+ * // nextToken: "STRING_VALUE",
71
+ * // };
72
+ *
73
+ * ```
74
+ *
75
+ * @param ListServiceDeploymentsCommandInput - {@link ListServiceDeploymentsCommandInput}
76
+ * @returns {@link ListServiceDeploymentsCommandOutput}
77
+ * @see {@link ListServiceDeploymentsCommandInput} for command's `input` shape.
78
+ * @see {@link ListServiceDeploymentsCommandOutput} for command's `response` shape.
79
+ * @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
80
+ *
81
+ * @throws {@link AccessDeniedException} (client fault)
82
+ * <p>You don't have authorization to perform the requested action.</p>
83
+ *
84
+ * @throws {@link ClientException} (client fault)
85
+ * <p>These errors are usually caused by a client action. This client action might be using
86
+ * an action or resource on behalf of a user that doesn't have permissions to use the
87
+ * action or resource. Or, it might be specifying an identifier that isn't valid.</p>
88
+ * <p>The following list includes additional causes for the error:</p>
89
+ * <ul>
90
+ * <li>
91
+ * <p>The <code>RunTask</code> could not be processed because you use managed
92
+ * scaling and there is a capacity error because the quota of tasks in the
93
+ * <code>PROVISIONING</code> per cluster has been reached. For information
94
+ * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
95
+ * service quotas</a>.</p>
96
+ * </li>
97
+ * </ul>
98
+ *
99
+ * @throws {@link InvalidParameterException} (client fault)
100
+ * <p>The specified parameter isn't valid. Review the available parameters for the API
101
+ * request.</p>
102
+ *
103
+ * @throws {@link ServerException} (server fault)
104
+ * <p>These errors are usually caused by a server issue.</p>
105
+ *
106
+ * @throws {@link ServiceNotFoundException} (client fault)
107
+ * <p>The specified service wasn't found. You can view your available services with <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ListServices.html">ListServices</a>. Amazon ECS services are cluster specific and Region
108
+ * specific.</p>
109
+ *
110
+ * @throws {@link UnsupportedFeatureException} (client fault)
111
+ * <p>The specified task isn't supported in this Region.</p>
112
+ *
113
+ * @throws {@link ECSServiceException}
114
+ * <p>Base exception class for all service exceptions from ECS service.</p>
115
+ *
116
+ * @public
117
+ */
118
+ export declare class ListServiceDeploymentsCommand extends ListServiceDeploymentsCommand_base {
119
+ /** @internal type navigation helper, not in runtime. */
120
+ protected static __types: {
121
+ api: {
122
+ input: ListServiceDeploymentsRequest;
123
+ output: ListServiceDeploymentsResponse;
124
+ };
125
+ sdk: {
126
+ input: ListServiceDeploymentsCommandInput;
127
+ output: ListServiceDeploymentsCommandOutput;
128
+ };
129
+ };
130
+ }
@@ -69,7 +69,7 @@ declare const ListServicesByNamespaceCommand_base: {
69
69
  * <li>
70
70
  * <p>The <code>RunTask</code> could not be processed because you use managed
71
71
  * scaling and there is a capacity error because the quota of tasks in the
72
- * <code>PROVISIONING</code> per cluster has been reached. For information
72
+ * <code>PROVISIONING</code> per cluster has been reached. For information
73
73
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
74
74
  * service quotas</a>.</p>
75
75
  * </li>
@@ -68,7 +68,7 @@ declare const ListServicesCommand_base: {
68
68
  * <li>
69
69
  * <p>The <code>RunTask</code> could not be processed because you use managed
70
70
  * scaling and there is a capacity error because the quota of tasks in the
71
- * <code>PROVISIONING</code> per cluster has been reached. For information
71
+ * <code>PROVISIONING</code> per cluster has been reached. For information
72
72
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
73
73
  * service quotas</a>.</p>
74
74
  * </li>
@@ -65,7 +65,7 @@ declare const ListTagsForResourceCommand_base: {
65
65
  * <li>
66
66
  * <p>The <code>RunTask</code> could not be processed because you use managed
67
67
  * scaling and there is a capacity error because the quota of tasks in the
68
- * <code>PROVISIONING</code> per cluster has been reached. For information
68
+ * <code>PROVISIONING</code> per cluster has been reached. For information
69
69
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
70
70
  * service quotas</a>.</p>
71
71
  * </li>
@@ -72,7 +72,7 @@ declare const ListTaskDefinitionFamiliesCommand_base: {
72
72
  * <li>
73
73
  * <p>The <code>RunTask</code> could not be processed because you use managed
74
74
  * scaling and there is a capacity error because the quota of tasks in the
75
- * <code>PROVISIONING</code> per cluster has been reached. For information
75
+ * <code>PROVISIONING</code> per cluster has been reached. For information
76
76
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
77
77
  * service quotas</a>.</p>
78
78
  * </li>
@@ -69,7 +69,7 @@ declare const ListTaskDefinitionsCommand_base: {
69
69
  * <li>
70
70
  * <p>The <code>RunTask</code> could not be processed because you use managed
71
71
  * scaling and there is a capacity error because the quota of tasks in the
72
- * <code>PROVISIONING</code> per cluster has been reached. For information
72
+ * <code>PROVISIONING</code> per cluster has been reached. For information
73
73
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
74
74
  * service quotas</a>.</p>
75
75
  * </li>
@@ -74,7 +74,7 @@ declare const ListTasksCommand_base: {
74
74
  * <li>
75
75
  * <p>The <code>RunTask</code> could not be processed because you use managed
76
76
  * scaling and there is a capacity error because the quota of tasks in the
77
- * <code>PROVISIONING</code> per cluster has been reached. For information
77
+ * <code>PROVISIONING</code> per cluster has been reached. For information
78
78
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
79
79
  * service quotas</a>.</p>
80
80
  * </li>
@@ -71,7 +71,7 @@ declare const PutAccountSettingCommand_base: {
71
71
  * <li>
72
72
  * <p>The <code>RunTask</code> could not be processed because you use managed
73
73
  * scaling and there is a capacity error because the quota of tasks in the
74
- * <code>PROVISIONING</code> per cluster has been reached. For information
74
+ * <code>PROVISIONING</code> per cluster has been reached. For information
75
75
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
76
76
  * service quotas</a>.</p>
77
77
  * </li>
@@ -67,7 +67,7 @@ declare const PutAccountSettingDefaultCommand_base: {
67
67
  * <li>
68
68
  * <p>The <code>RunTask</code> could not be processed because you use managed
69
69
  * scaling and there is a capacity error because the quota of tasks in the
70
- * <code>PROVISIONING</code> per cluster has been reached. For information
70
+ * <code>PROVISIONING</code> per cluster has been reached. For information
71
71
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
72
72
  * service quotas</a>.</p>
73
73
  * </li>
@@ -153,7 +153,7 @@ declare const PutClusterCapacityProvidersCommand_base: {
153
153
  * <li>
154
154
  * <p>The <code>RunTask</code> could not be processed because you use managed
155
155
  * scaling and there is a capacity error because the quota of tasks in the
156
- * <code>PROVISIONING</code> per cluster has been reached. For information
156
+ * <code>PROVISIONING</code> per cluster has been reached. For information
157
157
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
158
158
  * service quotas</a>.</p>
159
159
  * </li>
@@ -183,7 +183,7 @@ declare const RegisterContainerInstanceCommand_base: {
183
183
  * <li>
184
184
  * <p>The <code>RunTask</code> could not be processed because you use managed
185
185
  * scaling and there is a capacity error because the quota of tasks in the
186
- * <code>PROVISIONING</code> per cluster has been reached. For information
186
+ * <code>PROVISIONING</code> per cluster has been reached. For information
187
187
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
188
188
  * service quotas</a>.</p>
189
189
  * </li>
@@ -605,7 +605,7 @@ declare const RegisterTaskDefinitionCommand_base: {
605
605
  * <li>
606
606
  * <p>The <code>RunTask</code> could not be processed because you use managed
607
607
  * scaling and there is a capacity error because the quota of tasks in the
608
- * <code>PROVISIONING</code> per cluster has been reached. For information
608
+ * <code>PROVISIONING</code> per cluster has been reached. For information
609
609
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
610
610
  * service quotas</a>.</p>
611
611
  * </li>
@@ -392,7 +392,7 @@ declare const RunTaskCommand_base: {
392
392
  * <li>
393
393
  * <p>The <code>RunTask</code> could not be processed because you use managed
394
394
  * scaling and there is a capacity error because the quota of tasks in the
395
- * <code>PROVISIONING</code> per cluster has been reached. For information
395
+ * <code>PROVISIONING</code> per cluster has been reached. For information
396
396
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
397
397
  * service quotas</a>.</p>
398
398
  * </li>
@@ -339,7 +339,7 @@ declare const StartTaskCommand_base: {
339
339
  * <li>
340
340
  * <p>The <code>RunTask</code> could not be processed because you use managed
341
341
  * scaling and there is a capacity error because the quota of tasks in the
342
- * <code>PROVISIONING</code> per cluster has been reached. For information
342
+ * <code>PROVISIONING</code> per cluster has been reached. For information
343
343
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
344
344
  * service quotas</a>.</p>
345
345
  * </li>
@@ -236,7 +236,7 @@ declare const StopTaskCommand_base: {
236
236
  * <li>
237
237
  * <p>The <code>RunTask</code> could not be processed because you use managed
238
238
  * scaling and there is a capacity error because the quota of tasks in the
239
- * <code>PROVISIONING</code> per cluster has been reached. For information
239
+ * <code>PROVISIONING</code> per cluster has been reached. For information
240
240
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
241
241
  * service quotas</a>.</p>
242
242
  * </li>
@@ -72,7 +72,7 @@ declare const SubmitAttachmentStateChangesCommand_base: {
72
72
  * <li>
73
73
  * <p>The <code>RunTask</code> could not be processed because you use managed
74
74
  * scaling and there is a capacity error because the quota of tasks in the
75
- * <code>PROVISIONING</code> per cluster has been reached. For information
75
+ * <code>PROVISIONING</code> per cluster has been reached. For information
76
76
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
77
77
  * service quotas</a>.</p>
78
78
  * </li>
@@ -82,7 +82,7 @@ declare const SubmitContainerStateChangeCommand_base: {
82
82
  * <li>
83
83
  * <p>The <code>RunTask</code> could not be processed because you use managed
84
84
  * scaling and there is a capacity error because the quota of tasks in the
85
- * <code>PROVISIONING</code> per cluster has been reached. For information
85
+ * <code>PROVISIONING</code> per cluster has been reached. For information
86
86
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
87
87
  * service quotas</a>.</p>
88
88
  * </li>
@@ -106,7 +106,7 @@ declare const SubmitTaskStateChangeCommand_base: {
106
106
  * <li>
107
107
  * <p>The <code>RunTask</code> could not be processed because you use managed
108
108
  * scaling and there is a capacity error because the quota of tasks in the
109
- * <code>PROVISIONING</code> per cluster has been reached. For information
109
+ * <code>PROVISIONING</code> per cluster has been reached. For information
110
110
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
111
111
  * service quotas</a>.</p>
112
112
  * </li>
@@ -67,7 +67,7 @@ declare const TagResourceCommand_base: {
67
67
  * <li>
68
68
  * <p>The <code>RunTask</code> could not be processed because you use managed
69
69
  * scaling and there is a capacity error because the quota of tasks in the
70
- * <code>PROVISIONING</code> per cluster has been reached. For information
70
+ * <code>PROVISIONING</code> per cluster has been reached. For information
71
71
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
72
72
  * service quotas</a>.</p>
73
73
  * </li>
@@ -61,7 +61,7 @@ declare const UntagResourceCommand_base: {
61
61
  * <li>
62
62
  * <p>The <code>RunTask</code> could not be processed because you use managed
63
63
  * scaling and there is a capacity error because the quota of tasks in the
64
- * <code>PROVISIONING</code> per cluster has been reached. For information
64
+ * <code>PROVISIONING</code> per cluster has been reached. For information
65
65
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
66
66
  * service quotas</a>.</p>
67
67
  * </li>
@@ -95,7 +95,7 @@ declare const UpdateCapacityProviderCommand_base: {
95
95
  * <li>
96
96
  * <p>The <code>RunTask</code> could not be processed because you use managed
97
97
  * scaling and there is a capacity error because the quota of tasks in the
98
- * <code>PROVISIONING</code> per cluster has been reached. For information
98
+ * <code>PROVISIONING</code> per cluster has been reached. For information
99
99
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
100
100
  * service quotas</a>.</p>
101
101
  * </li>
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
4
- import { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_0";
4
+ import { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -156,7 +156,7 @@ declare const UpdateClusterCommand_base: {
156
156
  * <li>
157
157
  * <p>The <code>RunTask</code> could not be processed because you use managed
158
158
  * scaling and there is a capacity error because the quota of tasks in the
159
- * <code>PROVISIONING</code> per cluster has been reached. For information
159
+ * <code>PROVISIONING</code> per cluster has been reached. For information
160
160
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
161
161
  * service quotas</a>.</p>
162
162
  * </li>
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
4
- import { UpdateClusterSettingsRequest, UpdateClusterSettingsResponse } from "../models/models_0";
4
+ import { UpdateClusterSettingsRequest, UpdateClusterSettingsResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -136,7 +136,7 @@ declare const UpdateClusterSettingsCommand_base: {
136
136
  * <li>
137
137
  * <p>The <code>RunTask</code> could not be processed because you use managed
138
138
  * scaling and there is a capacity error because the quota of tasks in the
139
- * <code>PROVISIONING</code> per cluster has been reached. For information
139
+ * <code>PROVISIONING</code> per cluster has been reached. For information
140
140
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
141
141
  * service quotas</a>.</p>
142
142
  * </li>
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
4
- import { UpdateContainerAgentRequest, UpdateContainerAgentResponse } from "../models/models_0";
4
+ import { UpdateContainerAgentRequest, UpdateContainerAgentResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -158,7 +158,7 @@ declare const UpdateContainerAgentCommand_base: {
158
158
  * <li>
159
159
  * <p>The <code>RunTask</code> could not be processed because you use managed
160
160
  * scaling and there is a capacity error because the quota of tasks in the
161
- * <code>PROVISIONING</code> per cluster has been reached. For information
161
+ * <code>PROVISIONING</code> per cluster has been reached. For information
162
162
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
163
163
  * service quotas</a>.</p>
164
164
  * </li>
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
4
- import { UpdateContainerInstancesStateRequest, UpdateContainerInstancesStateResponse } from "../models/models_0";
4
+ import { UpdateContainerInstancesStateRequest, UpdateContainerInstancesStateResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -200,7 +200,7 @@ declare const UpdateContainerInstancesStateCommand_base: {
200
200
  * <li>
201
201
  * <p>The <code>RunTask</code> could not be processed because you use managed
202
202
  * scaling and there is a capacity error because the quota of tasks in the
203
- * <code>PROVISIONING</code> per cluster has been reached. For information
203
+ * <code>PROVISIONING</code> per cluster has been reached. For information
204
204
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
205
205
  * service quotas</a>.</p>
206
206
  * </li>
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
4
- import { UpdateServiceRequest, UpdateServiceResponse } from "../models/models_0";
4
+ import { UpdateServiceRequest, UpdateServiceResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -192,8 +192,8 @@ declare const UpdateServiceCommand_base: {
192
192
  * alarmNames: [ // StringList // required
193
193
  * "STRING_VALUE",
194
194
  * ],
195
- * enable: true || false, // required
196
195
  * rollback: true || false, // required
196
+ * enable: true || false, // required
197
197
  * },
198
198
  * },
199
199
  * networkConfiguration: { // NetworkConfiguration
@@ -359,8 +359,8 @@ declare const UpdateServiceCommand_base: {
359
359
  * // alarmNames: [ // StringList // required
360
360
  * // "STRING_VALUE",
361
361
  * // ],
362
- * // enable: true || false, // required
363
362
  * // rollback: true || false, // required
363
+ * // enable: true || false, // required
364
364
  * // },
365
365
  * // },
366
366
  * // taskSets: [ // TaskSets
@@ -606,7 +606,7 @@ declare const UpdateServiceCommand_base: {
606
606
  * <li>
607
607
  * <p>The <code>RunTask</code> could not be processed because you use managed
608
608
  * scaling and there is a capacity error because the quota of tasks in the
609
- * <code>PROVISIONING</code> per cluster has been reached. For information
609
+ * <code>PROVISIONING</code> per cluster has been reached. For information
610
610
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
611
611
  * service quotas</a>.</p>
612
612
  * </li>
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
4
- import { UpdateServicePrimaryTaskSetRequest, UpdateServicePrimaryTaskSetResponse } from "../models/models_0";
4
+ import { UpdateServicePrimaryTaskSetRequest, UpdateServicePrimaryTaskSetResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -135,7 +135,7 @@ declare const UpdateServicePrimaryTaskSetCommand_base: {
135
135
  * <li>
136
136
  * <p>The <code>RunTask</code> could not be processed because you use managed
137
137
  * scaling and there is a capacity error because the quota of tasks in the
138
- * <code>PROVISIONING</code> per cluster has been reached. For information
138
+ * <code>PROVISIONING</code> per cluster has been reached. For information
139
139
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
140
140
  * service quotas</a>.</p>
141
141
  * </li>
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
4
- import { UpdateTaskProtectionRequest, UpdateTaskProtectionResponse } from "../models/models_0";
4
+ import { UpdateTaskProtectionRequest, UpdateTaskProtectionResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -107,7 +107,7 @@ declare const UpdateTaskProtectionCommand_base: {
107
107
  * <li>
108
108
  * <p>The <code>RunTask</code> could not be processed because you use managed
109
109
  * scaling and there is a capacity error because the quota of tasks in the
110
- * <code>PROVISIONING</code> per cluster has been reached. For information
110
+ * <code>PROVISIONING</code> per cluster has been reached. For information
111
111
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
112
112
  * service quotas</a>.</p>
113
113
  * </li>
@@ -1,8 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
4
- import { UpdateTaskSetRequest } from "../models/models_0";
5
- import { UpdateTaskSetResponse } from "../models/models_1";
4
+ import { UpdateTaskSetRequest, UpdateTaskSetResponse } from "../models/models_1";
6
5
  /**
7
6
  * @public
8
7
  */
@@ -138,7 +137,7 @@ declare const UpdateTaskSetCommand_base: {
138
137
  * <li>
139
138
  * <p>The <code>RunTask</code> could not be processed because you use managed
140
139
  * scaling and there is a capacity error because the quota of tasks in the
141
- * <code>PROVISIONING</code> per cluster has been reached. For information
140
+ * <code>PROVISIONING</code> per cluster has been reached. For information
142
141
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
143
142
  * service quotas</a>.</p>
144
143
  * </li>
@@ -14,6 +14,8 @@ export * from "./DeregisterTaskDefinitionCommand";
14
14
  export * from "./DescribeCapacityProvidersCommand";
15
15
  export * from "./DescribeClustersCommand";
16
16
  export * from "./DescribeContainerInstancesCommand";
17
+ export * from "./DescribeServiceDeploymentsCommand";
18
+ export * from "./DescribeServiceRevisionsCommand";
17
19
  export * from "./DescribeServicesCommand";
18
20
  export * from "./DescribeTaskDefinitionCommand";
19
21
  export * from "./DescribeTaskSetsCommand";
@@ -25,6 +27,7 @@ export * from "./ListAccountSettingsCommand";
25
27
  export * from "./ListAttributesCommand";
26
28
  export * from "./ListClustersCommand";
27
29
  export * from "./ListContainerInstancesCommand";
30
+ export * from "./ListServiceDeploymentsCommand";
28
31
  export * from "./ListServicesByNamespaceCommand";
29
32
  export * from "./ListServicesCommand";
30
33
  export * from "./ListTagsForResourceCommand";