@aws-sdk/client-ecs 3.679.0 → 3.683.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 +6 -6
@@ -67,6 +67,14 @@ import {
67
67
  DescribeContainerInstancesCommandInput,
68
68
  DescribeContainerInstancesCommandOutput,
69
69
  } from "../commands/DescribeContainerInstancesCommand";
70
+ import {
71
+ DescribeServiceDeploymentsCommandInput,
72
+ DescribeServiceDeploymentsCommandOutput,
73
+ } from "../commands/DescribeServiceDeploymentsCommand";
74
+ import {
75
+ DescribeServiceRevisionsCommandInput,
76
+ DescribeServiceRevisionsCommandOutput,
77
+ } from "../commands/DescribeServiceRevisionsCommand";
70
78
  import {
71
79
  DescribeServicesCommandInput,
72
80
  DescribeServicesCommandOutput,
@@ -111,6 +119,10 @@ import {
111
119
  ListContainerInstancesCommandInput,
112
120
  ListContainerInstancesCommandOutput,
113
121
  } from "../commands/ListContainerInstancesCommand";
122
+ import {
123
+ ListServiceDeploymentsCommandInput,
124
+ ListServiceDeploymentsCommandOutput,
125
+ } from "../commands/ListServiceDeploymentsCommand";
114
126
  import {
115
127
  ListServicesByNamespaceCommandInput,
116
128
  ListServicesByNamespaceCommandOutput,
@@ -291,6 +303,14 @@ export declare const se_DescribeContainerInstancesCommand: (
291
303
  input: DescribeContainerInstancesCommandInput,
292
304
  context: __SerdeContext
293
305
  ) => Promise<__HttpRequest>;
306
+ export declare const se_DescribeServiceDeploymentsCommand: (
307
+ input: DescribeServiceDeploymentsCommandInput,
308
+ context: __SerdeContext
309
+ ) => Promise<__HttpRequest>;
310
+ export declare const se_DescribeServiceRevisionsCommand: (
311
+ input: DescribeServiceRevisionsCommandInput,
312
+ context: __SerdeContext
313
+ ) => Promise<__HttpRequest>;
294
314
  export declare const se_DescribeServicesCommand: (
295
315
  input: DescribeServicesCommandInput,
296
316
  context: __SerdeContext
@@ -335,6 +355,10 @@ export declare const se_ListContainerInstancesCommand: (
335
355
  input: ListContainerInstancesCommandInput,
336
356
  context: __SerdeContext
337
357
  ) => Promise<__HttpRequest>;
358
+ export declare const se_ListServiceDeploymentsCommand: (
359
+ input: ListServiceDeploymentsCommandInput,
360
+ context: __SerdeContext
361
+ ) => Promise<__HttpRequest>;
338
362
  export declare const se_ListServicesCommand: (
339
363
  input: ListServicesCommandInput,
340
364
  context: __SerdeContext
@@ -515,6 +539,14 @@ export declare const de_DescribeContainerInstancesCommand: (
515
539
  output: __HttpResponse,
516
540
  context: __SerdeContext
517
541
  ) => Promise<DescribeContainerInstancesCommandOutput>;
542
+ export declare const de_DescribeServiceDeploymentsCommand: (
543
+ output: __HttpResponse,
544
+ context: __SerdeContext
545
+ ) => Promise<DescribeServiceDeploymentsCommandOutput>;
546
+ export declare const de_DescribeServiceRevisionsCommand: (
547
+ output: __HttpResponse,
548
+ context: __SerdeContext
549
+ ) => Promise<DescribeServiceRevisionsCommandOutput>;
518
550
  export declare const de_DescribeServicesCommand: (
519
551
  output: __HttpResponse,
520
552
  context: __SerdeContext
@@ -559,6 +591,10 @@ export declare const de_ListContainerInstancesCommand: (
559
591
  output: __HttpResponse,
560
592
  context: __SerdeContext
561
593
  ) => Promise<ListContainerInstancesCommandOutput>;
594
+ export declare const de_ListServiceDeploymentsCommand: (
595
+ output: __HttpResponse,
596
+ context: __SerdeContext
597
+ ) => Promise<ListServiceDeploymentsCommandOutput>;
562
598
  export declare const de_ListServicesCommand: (
563
599
  output: __HttpResponse,
564
600
  context: __SerdeContext
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.679.0",
4
+ "version": "3.683.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-ecs",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.679.0",
24
- "@aws-sdk/client-sts": "3.679.0",
23
+ "@aws-sdk/client-sso-oidc": "3.682.0",
24
+ "@aws-sdk/client-sts": "3.682.0",
25
25
  "@aws-sdk/core": "3.679.0",
26
- "@aws-sdk/credential-provider-node": "3.679.0",
26
+ "@aws-sdk/credential-provider-node": "3.682.0",
27
27
  "@aws-sdk/middleware-host-header": "3.679.0",
28
28
  "@aws-sdk/middleware-logger": "3.679.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.679.0",
30
- "@aws-sdk/middleware-user-agent": "3.679.0",
30
+ "@aws-sdk/middleware-user-agent": "3.682.0",
31
31
  "@aws-sdk/region-config-resolver": "3.679.0",
32
32
  "@aws-sdk/types": "3.679.0",
33
33
  "@aws-sdk/util-endpoints": "3.679.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.679.0",
35
- "@aws-sdk/util-user-agent-node": "3.679.0",
35
+ "@aws-sdk/util-user-agent-node": "3.682.0",
36
36
  "@smithy/config-resolver": "^3.0.9",
37
37
  "@smithy/core": "^2.4.8",
38
38
  "@smithy/fetch-http-handler": "^3.2.9",