@aws-sdk/client-ecs 3.840.0 → 3.845.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-cjs/index.js +148 -4
- package/dist-es/models/models_0.js +25 -0
- package/dist-es/protocols/Aws_json1_1.js +121 -4
- package/dist-types/commands/CreateServiceCommand.d.ts +164 -39
- package/dist-types/commands/CreateTaskSetCommand.d.ts +12 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +32 -0
- package/dist-types/commands/DeleteTaskSetCommand.d.ts +6 -0
- package/dist-types/commands/DescribeServiceDeploymentsCommand.d.ts +13 -0
- package/dist-types/commands/DescribeServiceRevisionsCommand.d.ts +22 -0
- package/dist-types/commands/DescribeServicesCommand.d.ts +32 -0
- package/dist-types/commands/DescribeTaskSetsCommand.d.ts +6 -0
- package/dist-types/commands/StopTaskCommand.d.ts +2 -1
- package/dist-types/commands/SubmitAttachmentStateChangesCommand.d.ts +1 -1
- package/dist-types/commands/SubmitContainerStateChangeCommand.d.ts +1 -1
- package/dist-types/commands/SubmitTaskStateChangeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateServiceCommand.d.ts +61 -0
- package/dist-types/commands/UpdateServicePrimaryTaskSetCommand.d.ts +6 -0
- package/dist-types/commands/UpdateTaskSetCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +420 -272
- package/dist-types/models/models_1.d.ts +246 -1
- package/dist-types/ts3.4/commands/StopTaskCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/SubmitAttachmentStateChangesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SubmitContainerStateChangeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SubmitTaskStateChangeCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +68 -57
- package/dist-types/ts3.4/models/models_1.d.ts +62 -0
- package/package.json +14 -14
|
@@ -176,6 +176,18 @@ declare const UpdateServiceCommand_base: {
|
|
|
176
176
|
* rollback: true || false, // required
|
|
177
177
|
* enable: true || false, // required
|
|
178
178
|
* },
|
|
179
|
+
* strategy: "ROLLING" || "BLUE_GREEN",
|
|
180
|
+
* bakeTimeInMinutes: Number("int"),
|
|
181
|
+
* lifecycleHooks: [ // DeploymentLifecycleHookList
|
|
182
|
+
* { // DeploymentLifecycleHook
|
|
183
|
+
* hookTargetArn: "STRING_VALUE",
|
|
184
|
+
* roleArn: "STRING_VALUE",
|
|
185
|
+
* lifecycleStages: [ // DeploymentLifecycleHookStageList
|
|
186
|
+
* "RECONCILE_SERVICE" || "PRE_SCALE_UP" || "POST_SCALE_UP" || "TEST_TRAFFIC_SHIFT" || "POST_TEST_TRAFFIC_SHIFT" || "PRODUCTION_TRAFFIC_SHIFT" || "POST_PRODUCTION_TRAFFIC_SHIFT",
|
|
187
|
+
* ],
|
|
188
|
+
* hookDetails: "DOCUMENT_VALUE",
|
|
189
|
+
* },
|
|
190
|
+
* ],
|
|
179
191
|
* },
|
|
180
192
|
* availabilityZoneRebalancing: "ENABLED" || "DISABLED",
|
|
181
193
|
* networkConfiguration: { // NetworkConfiguration
|
|
@@ -204,6 +216,9 @@ declare const UpdateServiceCommand_base: {
|
|
|
204
216
|
* platformVersion: "STRING_VALUE",
|
|
205
217
|
* forceNewDeployment: true || false,
|
|
206
218
|
* healthCheckGracePeriodSeconds: Number("int"),
|
|
219
|
+
* deploymentController: { // DeploymentController
|
|
220
|
+
* type: "ECS" || "CODE_DEPLOY" || "EXTERNAL", // required
|
|
221
|
+
* },
|
|
207
222
|
* enableExecuteCommand: true || false,
|
|
208
223
|
* enableECSManagedTags: true || false,
|
|
209
224
|
* loadBalancers: [ // LoadBalancers
|
|
@@ -212,6 +227,12 @@ declare const UpdateServiceCommand_base: {
|
|
|
212
227
|
* loadBalancerName: "STRING_VALUE",
|
|
213
228
|
* containerName: "STRING_VALUE",
|
|
214
229
|
* containerPort: Number("int"),
|
|
230
|
+
* advancedConfiguration: { // AdvancedConfiguration
|
|
231
|
+
* alternateTargetGroupArn: "STRING_VALUE",
|
|
232
|
+
* productionListenerRule: "STRING_VALUE",
|
|
233
|
+
* testListenerRule: "STRING_VALUE",
|
|
234
|
+
* roleArn: "STRING_VALUE",
|
|
235
|
+
* },
|
|
215
236
|
* },
|
|
216
237
|
* ],
|
|
217
238
|
* propagateTags: "TASK_DEFINITION" || "SERVICE" || "NONE",
|
|
@@ -234,6 +255,14 @@ declare const UpdateServiceCommand_base: {
|
|
|
234
255
|
* { // ServiceConnectClientAlias
|
|
235
256
|
* port: Number("int"), // required
|
|
236
257
|
* dnsName: "STRING_VALUE",
|
|
258
|
+
* testTrafficRules: { // ServiceConnectTestTrafficRules
|
|
259
|
+
* header: { // ServiceConnectTestTrafficHeaderRules
|
|
260
|
+
* name: "STRING_VALUE", // required
|
|
261
|
+
* value: { // ServiceConnectTestTrafficHeaderMatchRules
|
|
262
|
+
* exact: "STRING_VALUE", // required
|
|
263
|
+
* },
|
|
264
|
+
* },
|
|
265
|
+
* },
|
|
237
266
|
* },
|
|
238
267
|
* ],
|
|
239
268
|
* ingressPortOverride: Number("int"),
|
|
@@ -313,6 +342,12 @@ declare const UpdateServiceCommand_base: {
|
|
|
313
342
|
* // loadBalancerName: "STRING_VALUE",
|
|
314
343
|
* // containerName: "STRING_VALUE",
|
|
315
344
|
* // containerPort: Number("int"),
|
|
345
|
+
* // advancedConfiguration: { // AdvancedConfiguration
|
|
346
|
+
* // alternateTargetGroupArn: "STRING_VALUE",
|
|
347
|
+
* // productionListenerRule: "STRING_VALUE",
|
|
348
|
+
* // testListenerRule: "STRING_VALUE",
|
|
349
|
+
* // roleArn: "STRING_VALUE",
|
|
350
|
+
* // },
|
|
316
351
|
* // },
|
|
317
352
|
* // ],
|
|
318
353
|
* // serviceRegistries: [ // ServiceRegistries
|
|
@@ -352,6 +387,18 @@ declare const UpdateServiceCommand_base: {
|
|
|
352
387
|
* // rollback: true || false, // required
|
|
353
388
|
* // enable: true || false, // required
|
|
354
389
|
* // },
|
|
390
|
+
* // strategy: "ROLLING" || "BLUE_GREEN",
|
|
391
|
+
* // bakeTimeInMinutes: Number("int"),
|
|
392
|
+
* // lifecycleHooks: [ // DeploymentLifecycleHookList
|
|
393
|
+
* // { // DeploymentLifecycleHook
|
|
394
|
+
* // hookTargetArn: "STRING_VALUE",
|
|
395
|
+
* // roleArn: "STRING_VALUE",
|
|
396
|
+
* // lifecycleStages: [ // DeploymentLifecycleHookStageList
|
|
397
|
+
* // "RECONCILE_SERVICE" || "PRE_SCALE_UP" || "POST_SCALE_UP" || "TEST_TRAFFIC_SHIFT" || "POST_TEST_TRAFFIC_SHIFT" || "PRODUCTION_TRAFFIC_SHIFT" || "POST_PRODUCTION_TRAFFIC_SHIFT",
|
|
398
|
+
* // ],
|
|
399
|
+
* // hookDetails: "DOCUMENT_VALUE",
|
|
400
|
+
* // },
|
|
401
|
+
* // ],
|
|
355
402
|
* // },
|
|
356
403
|
* // taskSets: [ // TaskSets
|
|
357
404
|
* // { // TaskSet
|
|
@@ -395,6 +442,12 @@ declare const UpdateServiceCommand_base: {
|
|
|
395
442
|
* // loadBalancerName: "STRING_VALUE",
|
|
396
443
|
* // containerName: "STRING_VALUE",
|
|
397
444
|
* // containerPort: Number("int"),
|
|
445
|
+
* // advancedConfiguration: {
|
|
446
|
+
* // alternateTargetGroupArn: "STRING_VALUE",
|
|
447
|
+
* // productionListenerRule: "STRING_VALUE",
|
|
448
|
+
* // testListenerRule: "STRING_VALUE",
|
|
449
|
+
* // roleArn: "STRING_VALUE",
|
|
450
|
+
* // },
|
|
398
451
|
* // },
|
|
399
452
|
* // ],
|
|
400
453
|
* // serviceRegistries: [
|
|
@@ -467,6 +520,14 @@ declare const UpdateServiceCommand_base: {
|
|
|
467
520
|
* // { // ServiceConnectClientAlias
|
|
468
521
|
* // port: Number("int"), // required
|
|
469
522
|
* // dnsName: "STRING_VALUE",
|
|
523
|
+
* // testTrafficRules: { // ServiceConnectTestTrafficRules
|
|
524
|
+
* // header: { // ServiceConnectTestTrafficHeaderRules
|
|
525
|
+
* // name: "STRING_VALUE", // required
|
|
526
|
+
* // value: { // ServiceConnectTestTrafficHeaderMatchRules
|
|
527
|
+
* // exact: "STRING_VALUE", // required
|
|
528
|
+
* // },
|
|
529
|
+
* // },
|
|
530
|
+
* // },
|
|
470
531
|
* // },
|
|
471
532
|
* // ],
|
|
472
533
|
* // ingressPortOverride: Number("int"),
|
|
@@ -87,6 +87,12 @@ declare const UpdateServicePrimaryTaskSetCommand_base: {
|
|
|
87
87
|
* // loadBalancerName: "STRING_VALUE",
|
|
88
88
|
* // containerName: "STRING_VALUE",
|
|
89
89
|
* // containerPort: Number("int"),
|
|
90
|
+
* // advancedConfiguration: { // AdvancedConfiguration
|
|
91
|
+
* // alternateTargetGroupArn: "STRING_VALUE",
|
|
92
|
+
* // productionListenerRule: "STRING_VALUE",
|
|
93
|
+
* // testListenerRule: "STRING_VALUE",
|
|
94
|
+
* // roleArn: "STRING_VALUE",
|
|
95
|
+
* // },
|
|
90
96
|
* // },
|
|
91
97
|
* // ],
|
|
92
98
|
* // serviceRegistries: [ // ServiceRegistries
|
|
@@ -89,6 +89,12 @@ declare const UpdateTaskSetCommand_base: {
|
|
|
89
89
|
* // loadBalancerName: "STRING_VALUE",
|
|
90
90
|
* // containerName: "STRING_VALUE",
|
|
91
91
|
* // containerPort: Number("int"),
|
|
92
|
+
* // advancedConfiguration: { // AdvancedConfiguration
|
|
93
|
+
* // alternateTargetGroupArn: "STRING_VALUE",
|
|
94
|
+
* // productionListenerRule: "STRING_VALUE",
|
|
95
|
+
* // testListenerRule: "STRING_VALUE",
|
|
96
|
+
* // roleArn: "STRING_VALUE",
|
|
97
|
+
* // },
|
|
92
98
|
* // },
|
|
93
99
|
* // ],
|
|
94
100
|
* // serviceRegistries: [ // ServiceRegistries
|