@aws-sdk/client-ecs 3.289.0 → 3.290.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/dist-types/commands/CreateCapacityProviderCommand.d.ts +23 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +13 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +32 -0
- package/dist-types/commands/CreateTaskSetCommand.d.ts +40 -0
- package/dist-types/commands/DeleteAccountSettingCommand.d.ts +13 -0
- package/dist-types/commands/DeleteAttributesCommand.d.ts +13 -0
- package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +13 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +36 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +20 -0
- package/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTaskSetCommand.d.ts +34 -0
- package/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +13 -0
- package/dist-types/commands/DescribeCapacityProvidersCommand.d.ts +13 -0
- package/dist-types/commands/DescribeClustersCommand.d.ts +13 -0
- package/dist-types/commands/DescribeContainerInstancesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeServicesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +13 -0
- package/dist-types/commands/DescribeTaskSetsCommand.d.ts +30 -0
- package/dist-types/commands/DescribeTasksCommand.d.ts +16 -0
- package/dist-types/commands/DiscoverPollEndpointCommand.d.ts +9 -0
- package/dist-types/commands/ExecuteCommandCommand.d.ts +37 -0
- package/dist-types/commands/GetTaskProtectionCommand.d.ts +25 -0
- package/dist-types/commands/ListAccountSettingsCommand.d.ts +13 -0
- package/dist-types/commands/ListAttributesCommand.d.ts +8 -0
- package/dist-types/commands/ListClustersCommand.d.ts +13 -0
- package/dist-types/commands/ListContainerInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListServicesByNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/ListServicesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTaskDefinitionFamiliesCommand.d.ts +13 -0
- package/dist-types/commands/ListTaskDefinitionsCommand.d.ts +13 -0
- package/dist-types/commands/ListTasksCommand.d.ts +20 -0
- package/dist-types/commands/PutAccountSettingCommand.d.ts +13 -0
- package/dist-types/commands/PutAccountSettingDefaultCommand.d.ts +13 -0
- package/dist-types/commands/PutAttributesCommand.d.ts +18 -0
- package/dist-types/commands/PutClusterCapacityProvidersCommand.d.ts +26 -0
- package/dist-types/commands/RegisterContainerInstanceCommand.d.ts +13 -0
- package/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +13 -0
- package/dist-types/commands/RunTaskCommand.d.ts +33 -0
- package/dist-types/commands/StartTaskCommand.d.ts +16 -0
- package/dist-types/commands/StopTaskCommand.d.ts +16 -0
- package/dist-types/commands/SubmitAttachmentStateChangesCommand.d.ts +16 -0
- package/dist-types/commands/SubmitContainerStateChangeCommand.d.ts +12 -0
- package/dist-types/commands/SubmitTaskStateChangeCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +19 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +19 -0
- package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +13 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +16 -0
- package/dist-types/commands/UpdateClusterSettingsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateContainerAgentCommand.d.ts +34 -0
- package/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +16 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +37 -0
- package/dist-types/commands/UpdateServicePrimaryTaskSetCommand.d.ts +34 -0
- package/dist-types/commands/UpdateTaskProtectionCommand.d.ts +25 -0
- package/dist-types/commands/UpdateTaskSetCommand.d.ts +34 -0
- package/package.json +30 -30
|
@@ -29,6 +29,22 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __Met
|
|
|
29
29
|
* @see {@link UpdateClusterCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ClientException} (client fault)
|
|
33
|
+
* <p>These errors are usually caused by a client action. This client action might be using
|
|
34
|
+
* an action or resource on behalf of a user that doesn't have permissions to use the
|
|
35
|
+
* action or resource,. Or, it might be specifying an identifier that isn't valid.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ClusterNotFoundException} (client fault)
|
|
38
|
+
* <p>The specified cluster wasn't found. You can view your available clusters with <a>ListClusters</a>. Amazon ECS clusters are Region specific.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
41
|
+
* <p>The specified parameter isn't valid. Review the available parameters for the API
|
|
42
|
+
* request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServerException} (server fault)
|
|
45
|
+
* <p>These errors are usually caused by a server issue.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class UpdateClusterCommand extends $Command<UpdateClusterCommandInput, UpdateClusterCommandOutput, ECSClientResolvedConfig> {
|
|
34
50
|
readonly input: UpdateClusterCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface UpdateClusterSettingsCommandOutput extends UpdateClusterSetting
|
|
|
29
29
|
* @see {@link UpdateClusterSettingsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ClientException} (client fault)
|
|
33
|
+
* <p>These errors are usually caused by a client action. This client action might be using
|
|
34
|
+
* an action or resource on behalf of a user that doesn't have permissions to use the
|
|
35
|
+
* action or resource,. Or, it might be specifying an identifier that isn't valid.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ClusterNotFoundException} (client fault)
|
|
38
|
+
* <p>The specified cluster wasn't found. You can view your available clusters with <a>ListClusters</a>. Amazon ECS clusters are Region specific.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
41
|
+
* <p>The specified parameter isn't valid. Review the available parameters for the API
|
|
42
|
+
* request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServerException} (server fault)
|
|
45
|
+
* <p>These errors are usually caused by a server issue.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class UpdateClusterSettingsCommand extends $Command<UpdateClusterSettingsCommandInput, UpdateClusterSettingsCommandOutput, ECSClientResolvedConfig> {
|
|
34
50
|
readonly input: UpdateClusterSettingsCommandInput;
|
|
@@ -47,6 +47,40 @@ export interface UpdateContainerAgentCommandOutput extends UpdateContainerAgentR
|
|
|
47
47
|
* @see {@link UpdateContainerAgentCommandOutput} for command's `response` shape.
|
|
48
48
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
49
49
|
*
|
|
50
|
+
* @throws {@link ClientException} (client fault)
|
|
51
|
+
* <p>These errors are usually caused by a client action. This client action might be using
|
|
52
|
+
* an action or resource on behalf of a user that doesn't have permissions to use the
|
|
53
|
+
* action or resource,. Or, it might be specifying an identifier that isn't valid.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ClusterNotFoundException} (client fault)
|
|
56
|
+
* <p>The specified cluster wasn't found. You can view your available clusters with <a>ListClusters</a>. Amazon ECS clusters are Region specific.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
59
|
+
* <p>The specified parameter isn't valid. Review the available parameters for the API
|
|
60
|
+
* request.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link MissingVersionException} (client fault)
|
|
63
|
+
* <p>Amazon ECS can't determine the current version of the Amazon ECS container agent on the
|
|
64
|
+
* container instance and doesn't have enough information to proceed with an update. This
|
|
65
|
+
* could be because the agent running on the container instance is a previous or custom
|
|
66
|
+
* version that doesn't use our version information.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link NoUpdateAvailableException} (client fault)
|
|
69
|
+
* <p>There's no update available for this Amazon ECS container agent. This might be because the
|
|
70
|
+
* agent is already running the latest version or because it's so old that there's no
|
|
71
|
+
* update path to the current version.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ServerException} (server fault)
|
|
74
|
+
* <p>These errors are usually caused by a server issue.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link UpdateInProgressException} (client fault)
|
|
77
|
+
* <p>There's already a current Amazon ECS container agent update in progress on the container
|
|
78
|
+
* instance that's specified. If the container agent becomes disconnected while it's in a
|
|
79
|
+
* transitional stage, such as <code>PENDING</code> or <code>STAGING</code>, the update
|
|
80
|
+
* process can get stuck in that state. However, when the agent reconnects, it resumes
|
|
81
|
+
* where it stopped previously.</p>
|
|
82
|
+
*
|
|
83
|
+
*
|
|
50
84
|
*/
|
|
51
85
|
export declare class UpdateContainerAgentCommand extends $Command<UpdateContainerAgentCommandInput, UpdateContainerAgentCommandOutput, ECSClientResolvedConfig> {
|
|
52
86
|
readonly input: UpdateContainerAgentCommandInput;
|
|
@@ -77,6 +77,22 @@ export interface UpdateContainerInstancesStateCommandOutput extends UpdateContai
|
|
|
77
77
|
* @see {@link UpdateContainerInstancesStateCommandOutput} for command's `response` shape.
|
|
78
78
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
79
79
|
*
|
|
80
|
+
* @throws {@link ClientException} (client fault)
|
|
81
|
+
* <p>These errors are usually caused by a client action. This client action might be using
|
|
82
|
+
* an action or resource on behalf of a user that doesn't have permissions to use the
|
|
83
|
+
* action or resource,. Or, it might be specifying an identifier that isn't valid.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ClusterNotFoundException} (client fault)
|
|
86
|
+
* <p>The specified cluster wasn't found. You can view your available clusters with <a>ListClusters</a>. Amazon ECS clusters are Region specific.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
89
|
+
* <p>The specified parameter isn't valid. Review the available parameters for the API
|
|
90
|
+
* request.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link ServerException} (server fault)
|
|
93
|
+
* <p>These errors are usually caused by a server issue.</p>
|
|
94
|
+
*
|
|
95
|
+
*
|
|
80
96
|
*/
|
|
81
97
|
export declare class UpdateContainerInstancesStateCommand extends $Command<UpdateContainerInstancesStateCommandInput, UpdateContainerInstancesStateCommandOutput, ECSClientResolvedConfig> {
|
|
82
98
|
readonly input: UpdateContainerInstancesStateCommandInput;
|
|
@@ -151,6 +151,43 @@ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __Met
|
|
|
151
151
|
* @see {@link UpdateServiceCommandOutput} for command's `response` shape.
|
|
152
152
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
153
153
|
*
|
|
154
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
155
|
+
* <p>You don't have authorization to perform the requested action.</p>
|
|
156
|
+
*
|
|
157
|
+
* @throws {@link ClientException} (client fault)
|
|
158
|
+
* <p>These errors are usually caused by a client action. This client action might be using
|
|
159
|
+
* an action or resource on behalf of a user that doesn't have permissions to use the
|
|
160
|
+
* action or resource,. Or, it might be specifying an identifier that isn't valid.</p>
|
|
161
|
+
*
|
|
162
|
+
* @throws {@link ClusterNotFoundException} (client fault)
|
|
163
|
+
* <p>The specified cluster wasn't found. You can view your available clusters with <a>ListClusters</a>. Amazon ECS clusters are Region specific.</p>
|
|
164
|
+
*
|
|
165
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
166
|
+
* <p>The specified parameter isn't valid. Review the available parameters for the API
|
|
167
|
+
* request.</p>
|
|
168
|
+
*
|
|
169
|
+
* @throws {@link NamespaceNotFoundException} (client fault)
|
|
170
|
+
* <p>The specified namespace wasn't found.</p>
|
|
171
|
+
*
|
|
172
|
+
* @throws {@link PlatformTaskDefinitionIncompatibilityException} (client fault)
|
|
173
|
+
* <p>The specified platform version doesn't satisfy the required capabilities of the task
|
|
174
|
+
* definition.</p>
|
|
175
|
+
*
|
|
176
|
+
* @throws {@link PlatformUnknownException} (client fault)
|
|
177
|
+
* <p>The specified platform version doesn't exist.</p>
|
|
178
|
+
*
|
|
179
|
+
* @throws {@link ServerException} (server fault)
|
|
180
|
+
* <p>These errors are usually caused by a server issue.</p>
|
|
181
|
+
*
|
|
182
|
+
* @throws {@link ServiceNotActiveException} (client fault)
|
|
183
|
+
* <p>The specified service isn't active. You can't update a service that's inactive. If you
|
|
184
|
+
* have previously deleted a service, you can re-create it with <a>CreateService</a>.</p>
|
|
185
|
+
*
|
|
186
|
+
* @throws {@link ServiceNotFoundException} (client fault)
|
|
187
|
+
* <p>The specified service wasn't found. You can view your available services with <a>ListServices</a>. Amazon ECS services are cluster specific and Region
|
|
188
|
+
* specific.</p>
|
|
189
|
+
*
|
|
190
|
+
*
|
|
154
191
|
* @example To change the task definition used in a service
|
|
155
192
|
* ```javascript
|
|
156
193
|
* // This example updates the my-http-service service to use the amazon-ecs-sample task definition.
|
|
@@ -33,6 +33,40 @@ export interface UpdateServicePrimaryTaskSetCommandOutput extends UpdateServiceP
|
|
|
33
33
|
* @see {@link UpdateServicePrimaryTaskSetCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
37
|
+
* <p>You don't have authorization to perform the requested action.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ClientException} (client fault)
|
|
40
|
+
* <p>These errors are usually caused by a client action. This client action might be using
|
|
41
|
+
* an action or resource on behalf of a user that doesn't have permissions to use the
|
|
42
|
+
* action or resource,. Or, it might be specifying an identifier that isn't valid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ClusterNotFoundException} (client fault)
|
|
45
|
+
* <p>The specified cluster wasn't found. You can view your available clusters with <a>ListClusters</a>. Amazon ECS clusters are Region specific.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
48
|
+
* <p>The specified parameter isn't valid. Review the available parameters for the API
|
|
49
|
+
* request.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ServerException} (server fault)
|
|
52
|
+
* <p>These errors are usually caused by a server issue.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ServiceNotActiveException} (client fault)
|
|
55
|
+
* <p>The specified service isn't active. You can't update a service that's inactive. If you
|
|
56
|
+
* have previously deleted a service, you can re-create it with <a>CreateService</a>.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ServiceNotFoundException} (client fault)
|
|
59
|
+
* <p>The specified service wasn't found. You can view your available services with <a>ListServices</a>. Amazon ECS services are cluster specific and Region
|
|
60
|
+
* specific.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link TaskSetNotFoundException} (client fault)
|
|
63
|
+
* <p>The specified task set wasn't found. You can view your available task sets with <a>DescribeTaskSets</a>. Task sets are specific to each cluster, service and
|
|
64
|
+
* Region.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link UnsupportedFeatureException} (client fault)
|
|
67
|
+
* <p>The specified task isn't supported in this Region.</p>
|
|
68
|
+
*
|
|
69
|
+
*
|
|
36
70
|
*/
|
|
37
71
|
export declare class UpdateServicePrimaryTaskSetCommand extends $Command<UpdateServicePrimaryTaskSetCommandInput, UpdateServicePrimaryTaskSetCommandOutput, ECSClientResolvedConfig> {
|
|
38
72
|
readonly input: UpdateServicePrimaryTaskSetCommandInput;
|
|
@@ -55,6 +55,31 @@ export interface UpdateTaskProtectionCommandOutput extends UpdateTaskProtectionR
|
|
|
55
55
|
* @see {@link UpdateTaskProtectionCommandOutput} for command's `response` shape.
|
|
56
56
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
57
57
|
*
|
|
58
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
59
|
+
* <p>You don't have authorization to perform the requested action.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ClientException} (client fault)
|
|
62
|
+
* <p>These errors are usually caused by a client action. This client action might be using
|
|
63
|
+
* an action or resource on behalf of a user that doesn't have permissions to use the
|
|
64
|
+
* action or resource,. Or, it might be specifying an identifier that isn't valid.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ClusterNotFoundException} (client fault)
|
|
67
|
+
* <p>The specified cluster wasn't found. You can view your available clusters with <a>ListClusters</a>. Amazon ECS clusters are Region specific.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
70
|
+
* <p>The specified parameter isn't valid. Review the available parameters for the API
|
|
71
|
+
* request.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
74
|
+
* <p>The specified resource wasn't found.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ServerException} (server fault)
|
|
77
|
+
* <p>These errors are usually caused by a server issue.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link UnsupportedFeatureException} (client fault)
|
|
80
|
+
* <p>The specified task isn't supported in this Region.</p>
|
|
81
|
+
*
|
|
82
|
+
*
|
|
58
83
|
* @example To set task scale-in protection for a task for 60 minutes
|
|
59
84
|
* ```javascript
|
|
60
85
|
* // This example enables scale-in protection for a task for 60 minutes.
|
|
@@ -31,6 +31,40 @@ export interface UpdateTaskSetCommandOutput extends UpdateTaskSetResponse, __Met
|
|
|
31
31
|
* @see {@link UpdateTaskSetCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You don't have authorization to perform the requested action.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ClientException} (client fault)
|
|
38
|
+
* <p>These errors are usually caused by a client action. This client action might be using
|
|
39
|
+
* an action or resource on behalf of a user that doesn't have permissions to use the
|
|
40
|
+
* action or resource,. Or, it might be specifying an identifier that isn't valid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ClusterNotFoundException} (client fault)
|
|
43
|
+
* <p>The specified cluster wasn't found. You can view your available clusters with <a>ListClusters</a>. Amazon ECS clusters are Region specific.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
46
|
+
* <p>The specified parameter isn't valid. Review the available parameters for the API
|
|
47
|
+
* request.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServerException} (server fault)
|
|
50
|
+
* <p>These errors are usually caused by a server issue.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceNotActiveException} (client fault)
|
|
53
|
+
* <p>The specified service isn't active. You can't update a service that's inactive. If you
|
|
54
|
+
* have previously deleted a service, you can re-create it with <a>CreateService</a>.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ServiceNotFoundException} (client fault)
|
|
57
|
+
* <p>The specified service wasn't found. You can view your available services with <a>ListServices</a>. Amazon ECS services are cluster specific and Region
|
|
58
|
+
* specific.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link TaskSetNotFoundException} (client fault)
|
|
61
|
+
* <p>The specified task set wasn't found. You can view your available task sets with <a>DescribeTaskSets</a>. Task sets are specific to each cluster, service and
|
|
62
|
+
* Region.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link UnsupportedFeatureException} (client fault)
|
|
65
|
+
* <p>The specified task isn't supported in this Region.</p>
|
|
66
|
+
*
|
|
67
|
+
*
|
|
34
68
|
*/
|
|
35
69
|
export declare class UpdateTaskSetCommand extends $Command<UpdateTaskSetCommandInput, UpdateTaskSetCommandOutput, ECSClientResolvedConfig> {
|
|
36
70
|
readonly input: UpdateTaskSetCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ecs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.290.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,39 +20,39 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
|
-
"@aws-sdk/util-waiter": "3.
|
|
55
|
+
"@aws-sdk/util-waiter": "3.290.0",
|
|
56
56
|
"tslib": "^2.3.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|