@aws-sdk/client-launch-wizard 3.687.0 → 3.692.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/models/models_0.d.ts +82 -82
- package/dist-types/ts3.4/models/models_0.d.ts +84 -82
- package/package.json +35 -35
|
@@ -43,12 +43,12 @@ export interface CreateDeploymentInput {
|
|
|
43
43
|
* <code>UnauthorizedOperation</code>.</p>
|
|
44
44
|
* @public
|
|
45
45
|
*/
|
|
46
|
-
dryRun?: boolean;
|
|
46
|
+
dryRun?: boolean | undefined;
|
|
47
47
|
/**
|
|
48
48
|
* <p>The tags to add to the deployment.</p>
|
|
49
49
|
* @public
|
|
50
50
|
*/
|
|
51
|
-
tags?: Record<string, string
|
|
51
|
+
tags?: Record<string, string> | undefined;
|
|
52
52
|
}
|
|
53
53
|
/**
|
|
54
54
|
* @public
|
|
@@ -58,7 +58,7 @@ export interface CreateDeploymentOutput {
|
|
|
58
58
|
* <p>The ID of the deployment.</p>
|
|
59
59
|
* @public
|
|
60
60
|
*/
|
|
61
|
-
deploymentId?: string;
|
|
61
|
+
deploymentId?: string | undefined;
|
|
62
62
|
}
|
|
63
63
|
/**
|
|
64
64
|
* <p>An internal error has occurred. Retry your request, but if the problem persists, contact
|
|
@@ -147,12 +147,12 @@ export interface DeleteDeploymentOutput {
|
|
|
147
147
|
* <p>The status of the deployment.</p>
|
|
148
148
|
* @public
|
|
149
149
|
*/
|
|
150
|
-
status?: DeploymentStatus;
|
|
150
|
+
status?: DeploymentStatus | undefined;
|
|
151
151
|
/**
|
|
152
152
|
* <p>The reason for the deployment status.</p>
|
|
153
153
|
* @public
|
|
154
154
|
*/
|
|
155
|
-
statusReason?: string;
|
|
155
|
+
statusReason?: string | undefined;
|
|
156
156
|
}
|
|
157
157
|
/**
|
|
158
158
|
* @public
|
|
@@ -168,13 +168,13 @@ export interface ListDeploymentEventsInput {
|
|
|
168
168
|
* make another request with the token returned in the output.</p>
|
|
169
169
|
* @public
|
|
170
170
|
*/
|
|
171
|
-
maxResults?: number;
|
|
171
|
+
maxResults?: number | undefined;
|
|
172
172
|
/**
|
|
173
173
|
* <p>The token returned from a previous paginated request. Pagination continues from the end
|
|
174
174
|
* of the items returned by the previous request.</p>
|
|
175
175
|
* @public
|
|
176
176
|
*/
|
|
177
|
-
nextToken?: string;
|
|
177
|
+
nextToken?: string | undefined;
|
|
178
178
|
}
|
|
179
179
|
/**
|
|
180
180
|
* @public
|
|
@@ -203,27 +203,27 @@ export interface DeploymentEventDataSummary {
|
|
|
203
203
|
* <p>The name of the deployment event.</p>
|
|
204
204
|
* @public
|
|
205
205
|
*/
|
|
206
|
-
name?: string;
|
|
206
|
+
name?: string | undefined;
|
|
207
207
|
/**
|
|
208
208
|
* <p>The description of the deployment event.</p>
|
|
209
209
|
* @public
|
|
210
210
|
*/
|
|
211
|
-
description?: string;
|
|
211
|
+
description?: string | undefined;
|
|
212
212
|
/**
|
|
213
213
|
* <p>The status of the deployment event.</p>
|
|
214
214
|
* @public
|
|
215
215
|
*/
|
|
216
|
-
status?: EventStatus;
|
|
216
|
+
status?: EventStatus | undefined;
|
|
217
217
|
/**
|
|
218
218
|
* <p>The reason of the deployment event status.</p>
|
|
219
219
|
* @public
|
|
220
220
|
*/
|
|
221
|
-
statusReason?: string;
|
|
221
|
+
statusReason?: string | undefined;
|
|
222
222
|
/**
|
|
223
223
|
* <p>The timestamp of the deployment event.</p>
|
|
224
224
|
* @public
|
|
225
225
|
*/
|
|
226
|
-
timestamp?: Date;
|
|
226
|
+
timestamp?: Date | undefined;
|
|
227
227
|
}
|
|
228
228
|
/**
|
|
229
229
|
* @public
|
|
@@ -233,13 +233,13 @@ export interface ListDeploymentEventsOutput {
|
|
|
233
233
|
* <p>Lists the deployment events.</p>
|
|
234
234
|
* @public
|
|
235
235
|
*/
|
|
236
|
-
deploymentEvents?: DeploymentEventDataSummary[];
|
|
236
|
+
deploymentEvents?: DeploymentEventDataSummary[] | undefined;
|
|
237
237
|
/**
|
|
238
238
|
* <p>The token to include in another request to get the next page of items. This value is
|
|
239
239
|
* <code>null</code> when there are no more items to return.</p>
|
|
240
240
|
* @public
|
|
241
241
|
*/
|
|
242
|
-
nextToken?: string;
|
|
242
|
+
nextToken?: string | undefined;
|
|
243
243
|
}
|
|
244
244
|
/**
|
|
245
245
|
* @public
|
|
@@ -260,32 +260,32 @@ export interface DeploymentData {
|
|
|
260
260
|
* <p>The name of the deployment.</p>
|
|
261
261
|
* @public
|
|
262
262
|
*/
|
|
263
|
-
name?: string;
|
|
263
|
+
name?: string | undefined;
|
|
264
264
|
/**
|
|
265
265
|
* <p>The ID of the deployment.</p>
|
|
266
266
|
* @public
|
|
267
267
|
*/
|
|
268
|
-
id?: string;
|
|
268
|
+
id?: string | undefined;
|
|
269
269
|
/**
|
|
270
270
|
* <p>The name of the workload.</p>
|
|
271
271
|
* @public
|
|
272
272
|
*/
|
|
273
|
-
workloadName?: string;
|
|
273
|
+
workloadName?: string | undefined;
|
|
274
274
|
/**
|
|
275
275
|
* <p>The pattern name of the deployment.</p>
|
|
276
276
|
* @public
|
|
277
277
|
*/
|
|
278
|
-
patternName?: string;
|
|
278
|
+
patternName?: string | undefined;
|
|
279
279
|
/**
|
|
280
280
|
* <p>The status of the deployment.</p>
|
|
281
281
|
* @public
|
|
282
282
|
*/
|
|
283
|
-
status?: DeploymentStatus;
|
|
283
|
+
status?: DeploymentStatus | undefined;
|
|
284
284
|
/**
|
|
285
285
|
* <p>The time the deployment was created.</p>
|
|
286
286
|
* @public
|
|
287
287
|
*/
|
|
288
|
-
createdAt?: Date;
|
|
288
|
+
createdAt?: Date | undefined;
|
|
289
289
|
/**
|
|
290
290
|
* <p>The settings specified for the deployment. These settings define how to deploy and configure your
|
|
291
291
|
* resources created by the deployment. For more information about the specifications
|
|
@@ -296,27 +296,27 @@ export interface DeploymentData {
|
|
|
296
296
|
* </a> operation.</p>
|
|
297
297
|
* @public
|
|
298
298
|
*/
|
|
299
|
-
specifications?: Record<string, string
|
|
299
|
+
specifications?: Record<string, string> | undefined;
|
|
300
300
|
/**
|
|
301
301
|
* <p>The resource group of the deployment.</p>
|
|
302
302
|
* @public
|
|
303
303
|
*/
|
|
304
|
-
resourceGroup?: string;
|
|
304
|
+
resourceGroup?: string | undefined;
|
|
305
305
|
/**
|
|
306
306
|
* <p>The time the deployment was deleted.</p>
|
|
307
307
|
* @public
|
|
308
308
|
*/
|
|
309
|
-
deletedAt?: Date;
|
|
309
|
+
deletedAt?: Date | undefined;
|
|
310
310
|
/**
|
|
311
311
|
* <p>Information about the tags attached to a deployment.</p>
|
|
312
312
|
* @public
|
|
313
313
|
*/
|
|
314
|
-
tags?: Record<string, string
|
|
314
|
+
tags?: Record<string, string> | undefined;
|
|
315
315
|
/**
|
|
316
316
|
* <p>The Amazon Resource Name (ARN) of the deployment.</p>
|
|
317
317
|
* @public
|
|
318
318
|
*/
|
|
319
|
-
deploymentArn?: string;
|
|
319
|
+
deploymentArn?: string | undefined;
|
|
320
320
|
}
|
|
321
321
|
/**
|
|
322
322
|
* @public
|
|
@@ -326,7 +326,7 @@ export interface GetDeploymentOutput {
|
|
|
326
326
|
* <p>An object that details the deployment.</p>
|
|
327
327
|
* @public
|
|
328
328
|
*/
|
|
329
|
-
deployment?: DeploymentData;
|
|
329
|
+
deployment?: DeploymentData | undefined;
|
|
330
330
|
}
|
|
331
331
|
/**
|
|
332
332
|
* @public
|
|
@@ -351,14 +351,14 @@ export interface DeploymentFilter {
|
|
|
351
351
|
* <p>The name of the filter. Filter names are case-sensitive.</p>
|
|
352
352
|
* @public
|
|
353
353
|
*/
|
|
354
|
-
name?: DeploymentFilterKey;
|
|
354
|
+
name?: DeploymentFilterKey | undefined;
|
|
355
355
|
/**
|
|
356
356
|
* <p>The filter values. Filter values are case-sensitive. If you specify multiple values for
|
|
357
357
|
* a filter, the values are joined with an <code>OR</code>, and the request returns all
|
|
358
358
|
* results that match any of the specified values.</p>
|
|
359
359
|
* @public
|
|
360
360
|
*/
|
|
361
|
-
values?: string[];
|
|
361
|
+
values?: string[] | undefined;
|
|
362
362
|
}
|
|
363
363
|
/**
|
|
364
364
|
* @public
|
|
@@ -382,19 +382,19 @@ export interface ListDeploymentsInput {
|
|
|
382
382
|
* </ul>
|
|
383
383
|
* @public
|
|
384
384
|
*/
|
|
385
|
-
filters?: DeploymentFilter[];
|
|
385
|
+
filters?: DeploymentFilter[] | undefined;
|
|
386
386
|
/**
|
|
387
387
|
* <p>The maximum number of items to return for this request. To get the next page of items,
|
|
388
388
|
* make another request with the token returned in the output.</p>
|
|
389
389
|
* @public
|
|
390
390
|
*/
|
|
391
|
-
maxResults?: number;
|
|
391
|
+
maxResults?: number | undefined;
|
|
392
392
|
/**
|
|
393
393
|
* <p>The token returned from a previous paginated request. Pagination continues from the end
|
|
394
394
|
* of the items returned by the previous request.</p>
|
|
395
395
|
* @public
|
|
396
396
|
*/
|
|
397
|
-
nextToken?: string;
|
|
397
|
+
nextToken?: string | undefined;
|
|
398
398
|
}
|
|
399
399
|
/**
|
|
400
400
|
* <p>A summary of the deployment data.</p>
|
|
@@ -405,32 +405,32 @@ export interface DeploymentDataSummary {
|
|
|
405
405
|
* <p>The name of the deployment</p>
|
|
406
406
|
* @public
|
|
407
407
|
*/
|
|
408
|
-
name?: string;
|
|
408
|
+
name?: string | undefined;
|
|
409
409
|
/**
|
|
410
410
|
* <p>The ID of the deployment.</p>
|
|
411
411
|
* @public
|
|
412
412
|
*/
|
|
413
|
-
id?: string;
|
|
413
|
+
id?: string | undefined;
|
|
414
414
|
/**
|
|
415
415
|
* <p>The name of the workload.</p>
|
|
416
416
|
* @public
|
|
417
417
|
*/
|
|
418
|
-
workloadName?: string;
|
|
418
|
+
workloadName?: string | undefined;
|
|
419
419
|
/**
|
|
420
420
|
* <p>The name of the workload deployment pattern.</p>
|
|
421
421
|
* @public
|
|
422
422
|
*/
|
|
423
|
-
patternName?: string;
|
|
423
|
+
patternName?: string | undefined;
|
|
424
424
|
/**
|
|
425
425
|
* <p>The status of the deployment.</p>
|
|
426
426
|
* @public
|
|
427
427
|
*/
|
|
428
|
-
status?: DeploymentStatus;
|
|
428
|
+
status?: DeploymentStatus | undefined;
|
|
429
429
|
/**
|
|
430
430
|
* <p>The time the deployment was created.</p>
|
|
431
431
|
* @public
|
|
432
432
|
*/
|
|
433
|
-
createdAt?: Date;
|
|
433
|
+
createdAt?: Date | undefined;
|
|
434
434
|
}
|
|
435
435
|
/**
|
|
436
436
|
* @public
|
|
@@ -440,13 +440,13 @@ export interface ListDeploymentsOutput {
|
|
|
440
440
|
* <p>Lists the deployments.</p>
|
|
441
441
|
* @public
|
|
442
442
|
*/
|
|
443
|
-
deployments?: DeploymentDataSummary[];
|
|
443
|
+
deployments?: DeploymentDataSummary[] | undefined;
|
|
444
444
|
/**
|
|
445
445
|
* <p>The token to include in another request to get the next page of items. This value is
|
|
446
446
|
* <code>null</code> when there are no more items to return.</p>
|
|
447
447
|
* @public
|
|
448
448
|
*/
|
|
449
|
-
nextToken?: string;
|
|
449
|
+
nextToken?: string | undefined;
|
|
450
450
|
}
|
|
451
451
|
/**
|
|
452
452
|
* <p>A field that details a condition of the specifications for a deployment.</p>
|
|
@@ -457,19 +457,19 @@ export interface DeploymentConditionalField {
|
|
|
457
457
|
* <p>The name of the deployment condition.</p>
|
|
458
458
|
* @public
|
|
459
459
|
*/
|
|
460
|
-
name?: string;
|
|
460
|
+
name?: string | undefined;
|
|
461
461
|
/**
|
|
462
462
|
* <p>The value of the condition.</p>
|
|
463
463
|
* @public
|
|
464
464
|
*/
|
|
465
|
-
value?: string;
|
|
465
|
+
value?: string | undefined;
|
|
466
466
|
/**
|
|
467
467
|
* <p>The comparator of the condition.</p>
|
|
468
468
|
* <p>Valid values: <code>Equal | NotEqual</code>
|
|
469
469
|
* </p>
|
|
470
470
|
* @public
|
|
471
471
|
*/
|
|
472
|
-
comparator?: string;
|
|
472
|
+
comparator?: string | undefined;
|
|
473
473
|
}
|
|
474
474
|
/**
|
|
475
475
|
* <p>A field that details a specification of a deployment pattern.</p>
|
|
@@ -480,27 +480,27 @@ export interface DeploymentSpecificationsField {
|
|
|
480
480
|
* <p>The name of the deployment specification.</p>
|
|
481
481
|
* @public
|
|
482
482
|
*/
|
|
483
|
-
name?: string;
|
|
483
|
+
name?: string | undefined;
|
|
484
484
|
/**
|
|
485
485
|
* <p>The description of the deployment specification.</p>
|
|
486
486
|
* @public
|
|
487
487
|
*/
|
|
488
|
-
description?: string;
|
|
488
|
+
description?: string | undefined;
|
|
489
489
|
/**
|
|
490
490
|
* <p>The allowed values of the deployment specification.</p>
|
|
491
491
|
* @public
|
|
492
492
|
*/
|
|
493
|
-
allowedValues?: string[];
|
|
493
|
+
allowedValues?: string[] | undefined;
|
|
494
494
|
/**
|
|
495
495
|
* <p>Indicates if the deployment specification is required.</p>
|
|
496
496
|
* @public
|
|
497
497
|
*/
|
|
498
|
-
required?: string;
|
|
498
|
+
required?: string | undefined;
|
|
499
499
|
/**
|
|
500
500
|
* <p>The conditionals used for the deployment specification.</p>
|
|
501
501
|
* @public
|
|
502
502
|
*/
|
|
503
|
-
conditionals?: DeploymentConditionalField[];
|
|
503
|
+
conditionals?: DeploymentConditionalField[] | undefined;
|
|
504
504
|
}
|
|
505
505
|
/**
|
|
506
506
|
* @public
|
|
@@ -535,37 +535,37 @@ export interface WorkloadData {
|
|
|
535
535
|
* <p>The name of the workload.</p>
|
|
536
536
|
* @public
|
|
537
537
|
*/
|
|
538
|
-
workloadName?: string;
|
|
538
|
+
workloadName?: string | undefined;
|
|
539
539
|
/**
|
|
540
540
|
* <p>The display name of a workload.</p>
|
|
541
541
|
* @public
|
|
542
542
|
*/
|
|
543
|
-
displayName?: string;
|
|
543
|
+
displayName?: string | undefined;
|
|
544
544
|
/**
|
|
545
545
|
* <p>The description of a workload.</p>
|
|
546
546
|
* @public
|
|
547
547
|
*/
|
|
548
|
-
description?: string;
|
|
548
|
+
description?: string | undefined;
|
|
549
549
|
/**
|
|
550
550
|
* <p>The URL of a workload document.</p>
|
|
551
551
|
* @public
|
|
552
552
|
*/
|
|
553
|
-
documentationUrl?: string;
|
|
553
|
+
documentationUrl?: string | undefined;
|
|
554
554
|
/**
|
|
555
555
|
* <p>The URL of a workload icon.</p>
|
|
556
556
|
* @public
|
|
557
557
|
*/
|
|
558
|
-
iconUrl?: string;
|
|
558
|
+
iconUrl?: string | undefined;
|
|
559
559
|
/**
|
|
560
560
|
* <p>The status of a workload.</p>
|
|
561
561
|
* @public
|
|
562
562
|
*/
|
|
563
|
-
status?: WorkloadStatus;
|
|
563
|
+
status?: WorkloadStatus | undefined;
|
|
564
564
|
/**
|
|
565
565
|
* <p>The message about a workload's status.</p>
|
|
566
566
|
* @public
|
|
567
567
|
*/
|
|
568
|
-
statusMessage?: string;
|
|
568
|
+
statusMessage?: string | undefined;
|
|
569
569
|
}
|
|
570
570
|
/**
|
|
571
571
|
* @public
|
|
@@ -575,7 +575,7 @@ export interface GetWorkloadOutput {
|
|
|
575
575
|
* <p>Information about the workload.</p>
|
|
576
576
|
* @public
|
|
577
577
|
*/
|
|
578
|
-
workload?: WorkloadData;
|
|
578
|
+
workload?: WorkloadData | undefined;
|
|
579
579
|
}
|
|
580
580
|
/**
|
|
581
581
|
* @public
|
|
@@ -615,37 +615,37 @@ export interface WorkloadDeploymentPatternData {
|
|
|
615
615
|
* <p>The workload name of the deployment pattern.</p>
|
|
616
616
|
* @public
|
|
617
617
|
*/
|
|
618
|
-
workloadName?: string;
|
|
618
|
+
workloadName?: string | undefined;
|
|
619
619
|
/**
|
|
620
620
|
* <p>The name of the deployment pattern.</p>
|
|
621
621
|
* @public
|
|
622
622
|
*/
|
|
623
|
-
deploymentPatternName?: string;
|
|
623
|
+
deploymentPatternName?: string | undefined;
|
|
624
624
|
/**
|
|
625
625
|
* <p>The workload version name of the deployment pattern.</p>
|
|
626
626
|
* @public
|
|
627
627
|
*/
|
|
628
|
-
workloadVersionName?: string;
|
|
628
|
+
workloadVersionName?: string | undefined;
|
|
629
629
|
/**
|
|
630
630
|
* <p>The display name of the deployment pattern.</p>
|
|
631
631
|
* @public
|
|
632
632
|
*/
|
|
633
|
-
displayName?: string;
|
|
633
|
+
displayName?: string | undefined;
|
|
634
634
|
/**
|
|
635
635
|
* <p>The description of the deployment pattern.</p>
|
|
636
636
|
* @public
|
|
637
637
|
*/
|
|
638
|
-
description?: string;
|
|
638
|
+
description?: string | undefined;
|
|
639
639
|
/**
|
|
640
640
|
* <p>The status of the deployment pattern.</p>
|
|
641
641
|
* @public
|
|
642
642
|
*/
|
|
643
|
-
status?: WorkloadDeploymentPatternStatus;
|
|
643
|
+
status?: WorkloadDeploymentPatternStatus | undefined;
|
|
644
644
|
/**
|
|
645
645
|
* <p>The status message of the deployment pattern.</p>
|
|
646
646
|
* @public
|
|
647
647
|
*/
|
|
648
|
-
statusMessage?: string;
|
|
648
|
+
statusMessage?: string | undefined;
|
|
649
649
|
/**
|
|
650
650
|
* <p>The settings specified for the deployment. These settings define how to deploy and configure your
|
|
651
651
|
* resources created by the deployment. For more information about the specifications
|
|
@@ -656,7 +656,7 @@ export interface WorkloadDeploymentPatternData {
|
|
|
656
656
|
* </a> operation.</p>
|
|
657
657
|
* @public
|
|
658
658
|
*/
|
|
659
|
-
specifications?: DeploymentSpecificationsField[];
|
|
659
|
+
specifications?: DeploymentSpecificationsField[] | undefined;
|
|
660
660
|
}
|
|
661
661
|
/**
|
|
662
662
|
* @public
|
|
@@ -666,7 +666,7 @@ export interface GetWorkloadDeploymentPatternOutput {
|
|
|
666
666
|
* <p>Details about the workload deployment pattern.</p>
|
|
667
667
|
* @public
|
|
668
668
|
*/
|
|
669
|
-
workloadDeploymentPattern?: WorkloadDeploymentPatternData;
|
|
669
|
+
workloadDeploymentPattern?: WorkloadDeploymentPatternData | undefined;
|
|
670
670
|
}
|
|
671
671
|
/**
|
|
672
672
|
* @public
|
|
@@ -686,7 +686,7 @@ export interface ListTagsForResourceOutput {
|
|
|
686
686
|
* <p>Information about the tags.</p>
|
|
687
687
|
* @public
|
|
688
688
|
*/
|
|
689
|
-
tags?: Record<string, string
|
|
689
|
+
tags?: Record<string, string> | undefined;
|
|
690
690
|
}
|
|
691
691
|
/**
|
|
692
692
|
* @public
|
|
@@ -737,13 +737,13 @@ export interface ListWorkloadsInput {
|
|
|
737
737
|
* make another request with the token returned in the output.</p>
|
|
738
738
|
* @public
|
|
739
739
|
*/
|
|
740
|
-
maxResults?: number;
|
|
740
|
+
maxResults?: number | undefined;
|
|
741
741
|
/**
|
|
742
742
|
* <p>The token returned from a previous paginated request. Pagination continues from the end
|
|
743
743
|
* of the items returned by the previous request.</p>
|
|
744
744
|
* @public
|
|
745
745
|
*/
|
|
746
|
-
nextToken?: string;
|
|
746
|
+
nextToken?: string | undefined;
|
|
747
747
|
}
|
|
748
748
|
/**
|
|
749
749
|
* <p>Describes workload data.</p>
|
|
@@ -754,12 +754,12 @@ export interface WorkloadDataSummary {
|
|
|
754
754
|
* <p>The name of the workload.</p>
|
|
755
755
|
* @public
|
|
756
756
|
*/
|
|
757
|
-
workloadName?: string;
|
|
757
|
+
workloadName?: string | undefined;
|
|
758
758
|
/**
|
|
759
759
|
* <p>The display name of the workload data.</p>
|
|
760
760
|
* @public
|
|
761
761
|
*/
|
|
762
|
-
displayName?: string;
|
|
762
|
+
displayName?: string | undefined;
|
|
763
763
|
}
|
|
764
764
|
/**
|
|
765
765
|
* @public
|
|
@@ -769,13 +769,13 @@ export interface ListWorkloadsOutput {
|
|
|
769
769
|
* <p>Information about the workloads.</p>
|
|
770
770
|
* @public
|
|
771
771
|
*/
|
|
772
|
-
workloads?: WorkloadDataSummary[];
|
|
772
|
+
workloads?: WorkloadDataSummary[] | undefined;
|
|
773
773
|
/**
|
|
774
774
|
* <p>The token to include in another request to get the next page of items. This value is
|
|
775
775
|
* <code>null</code> when there are no more items to return.</p>
|
|
776
776
|
* @public
|
|
777
777
|
*/
|
|
778
|
-
nextToken?: string;
|
|
778
|
+
nextToken?: string | undefined;
|
|
779
779
|
}
|
|
780
780
|
/**
|
|
781
781
|
* @public
|
|
@@ -791,13 +791,13 @@ export interface ListWorkloadDeploymentPatternsInput {
|
|
|
791
791
|
* make another request with the token returned in the output.</p>
|
|
792
792
|
* @public
|
|
793
793
|
*/
|
|
794
|
-
maxResults?: number;
|
|
794
|
+
maxResults?: number | undefined;
|
|
795
795
|
/**
|
|
796
796
|
* <p>The token returned from a previous paginated request. Pagination continues from the end
|
|
797
797
|
* of the items returned by the previous request.</p>
|
|
798
798
|
* @public
|
|
799
799
|
*/
|
|
800
|
-
nextToken?: string;
|
|
800
|
+
nextToken?: string | undefined;
|
|
801
801
|
}
|
|
802
802
|
/**
|
|
803
803
|
* <p>Describes a workload deployment pattern.</p>
|
|
@@ -808,37 +808,37 @@ export interface WorkloadDeploymentPatternDataSummary {
|
|
|
808
808
|
* <p>The name of the workload.</p>
|
|
809
809
|
* @public
|
|
810
810
|
*/
|
|
811
|
-
workloadName?: string;
|
|
811
|
+
workloadName?: string | undefined;
|
|
812
812
|
/**
|
|
813
813
|
* <p>The name of a workload deployment pattern.</p>
|
|
814
814
|
* @public
|
|
815
815
|
*/
|
|
816
|
-
deploymentPatternName?: string;
|
|
816
|
+
deploymentPatternName?: string | undefined;
|
|
817
817
|
/**
|
|
818
818
|
* <p>The name of the workload deployment pattern version.</p>
|
|
819
819
|
* @public
|
|
820
820
|
*/
|
|
821
|
-
workloadVersionName?: string;
|
|
821
|
+
workloadVersionName?: string | undefined;
|
|
822
822
|
/**
|
|
823
823
|
* <p>The display name of a workload deployment pattern.</p>
|
|
824
824
|
* @public
|
|
825
825
|
*/
|
|
826
|
-
displayName?: string;
|
|
826
|
+
displayName?: string | undefined;
|
|
827
827
|
/**
|
|
828
828
|
* <p>The description of a workload deployment pattern.</p>
|
|
829
829
|
* @public
|
|
830
830
|
*/
|
|
831
|
-
description?: string;
|
|
831
|
+
description?: string | undefined;
|
|
832
832
|
/**
|
|
833
833
|
* <p>The status of a workload deployment pattern.</p>
|
|
834
834
|
* @public
|
|
835
835
|
*/
|
|
836
|
-
status?: WorkloadDeploymentPatternStatus;
|
|
836
|
+
status?: WorkloadDeploymentPatternStatus | undefined;
|
|
837
837
|
/**
|
|
838
838
|
* <p>A message about a workload deployment pattern's status.</p>
|
|
839
839
|
* @public
|
|
840
840
|
*/
|
|
841
|
-
statusMessage?: string;
|
|
841
|
+
statusMessage?: string | undefined;
|
|
842
842
|
}
|
|
843
843
|
/**
|
|
844
844
|
* @public
|
|
@@ -848,13 +848,13 @@ export interface ListWorkloadDeploymentPatternsOutput {
|
|
|
848
848
|
* <p>Describes the workload deployment patterns.</p>
|
|
849
849
|
* @public
|
|
850
850
|
*/
|
|
851
|
-
workloadDeploymentPatterns?: WorkloadDeploymentPatternDataSummary[];
|
|
851
|
+
workloadDeploymentPatterns?: WorkloadDeploymentPatternDataSummary[] | undefined;
|
|
852
852
|
/**
|
|
853
853
|
* <p>The token to include in another request to get the next page of items. This value is
|
|
854
854
|
* <code>null</code> when there are no more items to return.</p>
|
|
855
855
|
* @public
|
|
856
856
|
*/
|
|
857
|
-
nextToken?: string;
|
|
857
|
+
nextToken?: string | undefined;
|
|
858
858
|
}
|
|
859
859
|
/**
|
|
860
860
|
* @internal
|
|
@@ -5,11 +5,11 @@ export interface CreateDeploymentInput {
|
|
|
5
5
|
deploymentPatternName: string | undefined;
|
|
6
6
|
name: string | undefined;
|
|
7
7
|
specifications: Record<string, string> | undefined;
|
|
8
|
-
dryRun?: boolean;
|
|
9
|
-
tags?: Record<string, string
|
|
8
|
+
dryRun?: boolean | undefined;
|
|
9
|
+
tags?: Record<string, string> | undefined;
|
|
10
10
|
}
|
|
11
11
|
export interface CreateDeploymentOutput {
|
|
12
|
-
deploymentId?: string;
|
|
12
|
+
deploymentId?: string | undefined;
|
|
13
13
|
}
|
|
14
14
|
export declare class InternalServerException extends __BaseException {
|
|
15
15
|
readonly name: "InternalServerException";
|
|
@@ -56,13 +56,13 @@ export declare const DeploymentStatus: {
|
|
|
56
56
|
export type DeploymentStatus =
|
|
57
57
|
(typeof DeploymentStatus)[keyof typeof DeploymentStatus];
|
|
58
58
|
export interface DeleteDeploymentOutput {
|
|
59
|
-
status?: DeploymentStatus;
|
|
60
|
-
statusReason?: string;
|
|
59
|
+
status?: DeploymentStatus | undefined;
|
|
60
|
+
statusReason?: string | undefined;
|
|
61
61
|
}
|
|
62
62
|
export interface ListDeploymentEventsInput {
|
|
63
63
|
deploymentId: string | undefined;
|
|
64
|
-
maxResults?: number;
|
|
65
|
-
nextToken?: string;
|
|
64
|
+
maxResults?: number | undefined;
|
|
65
|
+
nextToken?: string | undefined;
|
|
66
66
|
}
|
|
67
67
|
export declare const EventStatus: {
|
|
68
68
|
readonly CANCELED: "CANCELED";
|
|
@@ -76,34 +76,34 @@ export declare const EventStatus: {
|
|
|
76
76
|
};
|
|
77
77
|
export type EventStatus = (typeof EventStatus)[keyof typeof EventStatus];
|
|
78
78
|
export interface DeploymentEventDataSummary {
|
|
79
|
-
name?: string;
|
|
80
|
-
description?: string;
|
|
81
|
-
status?: EventStatus;
|
|
82
|
-
statusReason?: string;
|
|
83
|
-
timestamp?: Date;
|
|
79
|
+
name?: string | undefined;
|
|
80
|
+
description?: string | undefined;
|
|
81
|
+
status?: EventStatus | undefined;
|
|
82
|
+
statusReason?: string | undefined;
|
|
83
|
+
timestamp?: Date | undefined;
|
|
84
84
|
}
|
|
85
85
|
export interface ListDeploymentEventsOutput {
|
|
86
|
-
deploymentEvents?: DeploymentEventDataSummary[];
|
|
87
|
-
nextToken?: string;
|
|
86
|
+
deploymentEvents?: DeploymentEventDataSummary[] | undefined;
|
|
87
|
+
nextToken?: string | undefined;
|
|
88
88
|
}
|
|
89
89
|
export interface GetDeploymentInput {
|
|
90
90
|
deploymentId: string | undefined;
|
|
91
91
|
}
|
|
92
92
|
export interface DeploymentData {
|
|
93
|
-
name?: string;
|
|
94
|
-
id?: string;
|
|
95
|
-
workloadName?: string;
|
|
96
|
-
patternName?: string;
|
|
97
|
-
status?: DeploymentStatus;
|
|
98
|
-
createdAt?: Date;
|
|
99
|
-
specifications?: Record<string, string
|
|
100
|
-
resourceGroup?: string;
|
|
101
|
-
deletedAt?: Date;
|
|
102
|
-
tags?: Record<string, string
|
|
103
|
-
deploymentArn?: string;
|
|
93
|
+
name?: string | undefined;
|
|
94
|
+
id?: string | undefined;
|
|
95
|
+
workloadName?: string | undefined;
|
|
96
|
+
patternName?: string | undefined;
|
|
97
|
+
status?: DeploymentStatus | undefined;
|
|
98
|
+
createdAt?: Date | undefined;
|
|
99
|
+
specifications?: Record<string, string> | undefined;
|
|
100
|
+
resourceGroup?: string | undefined;
|
|
101
|
+
deletedAt?: Date | undefined;
|
|
102
|
+
tags?: Record<string, string> | undefined;
|
|
103
|
+
deploymentArn?: string | undefined;
|
|
104
104
|
}
|
|
105
105
|
export interface GetDeploymentOutput {
|
|
106
|
-
deployment?: DeploymentData;
|
|
106
|
+
deployment?: DeploymentData | undefined;
|
|
107
107
|
}
|
|
108
108
|
export declare const DeploymentFilterKey: {
|
|
109
109
|
readonly DEPLOYMENT_STATUS: "DEPLOYMENT_STATUS";
|
|
@@ -112,37 +112,37 @@ export declare const DeploymentFilterKey: {
|
|
|
112
112
|
export type DeploymentFilterKey =
|
|
113
113
|
(typeof DeploymentFilterKey)[keyof typeof DeploymentFilterKey];
|
|
114
114
|
export interface DeploymentFilter {
|
|
115
|
-
name?: DeploymentFilterKey;
|
|
116
|
-
values?: string[];
|
|
115
|
+
name?: DeploymentFilterKey | undefined;
|
|
116
|
+
values?: string[] | undefined;
|
|
117
117
|
}
|
|
118
118
|
export interface ListDeploymentsInput {
|
|
119
|
-
filters?: DeploymentFilter[];
|
|
120
|
-
maxResults?: number;
|
|
121
|
-
nextToken?: string;
|
|
119
|
+
filters?: DeploymentFilter[] | undefined;
|
|
120
|
+
maxResults?: number | undefined;
|
|
121
|
+
nextToken?: string | undefined;
|
|
122
122
|
}
|
|
123
123
|
export interface DeploymentDataSummary {
|
|
124
|
-
name?: string;
|
|
125
|
-
id?: string;
|
|
126
|
-
workloadName?: string;
|
|
127
|
-
patternName?: string;
|
|
128
|
-
status?: DeploymentStatus;
|
|
129
|
-
createdAt?: Date;
|
|
124
|
+
name?: string | undefined;
|
|
125
|
+
id?: string | undefined;
|
|
126
|
+
workloadName?: string | undefined;
|
|
127
|
+
patternName?: string | undefined;
|
|
128
|
+
status?: DeploymentStatus | undefined;
|
|
129
|
+
createdAt?: Date | undefined;
|
|
130
130
|
}
|
|
131
131
|
export interface ListDeploymentsOutput {
|
|
132
|
-
deployments?: DeploymentDataSummary[];
|
|
133
|
-
nextToken?: string;
|
|
132
|
+
deployments?: DeploymentDataSummary[] | undefined;
|
|
133
|
+
nextToken?: string | undefined;
|
|
134
134
|
}
|
|
135
135
|
export interface DeploymentConditionalField {
|
|
136
|
-
name?: string;
|
|
137
|
-
value?: string;
|
|
138
|
-
comparator?: string;
|
|
136
|
+
name?: string | undefined;
|
|
137
|
+
value?: string | undefined;
|
|
138
|
+
comparator?: string | undefined;
|
|
139
139
|
}
|
|
140
140
|
export interface DeploymentSpecificationsField {
|
|
141
|
-
name?: string;
|
|
142
|
-
description?: string;
|
|
143
|
-
allowedValues?: string[];
|
|
144
|
-
required?: string;
|
|
145
|
-
conditionals?: DeploymentConditionalField[];
|
|
141
|
+
name?: string | undefined;
|
|
142
|
+
description?: string | undefined;
|
|
143
|
+
allowedValues?: string[] | undefined;
|
|
144
|
+
required?: string | undefined;
|
|
145
|
+
conditionals?: DeploymentConditionalField[] | undefined;
|
|
146
146
|
}
|
|
147
147
|
export interface GetWorkloadInput {
|
|
148
148
|
workloadName: string | undefined;
|
|
@@ -156,16 +156,16 @@ export declare const WorkloadStatus: {
|
|
|
156
156
|
export type WorkloadStatus =
|
|
157
157
|
(typeof WorkloadStatus)[keyof typeof WorkloadStatus];
|
|
158
158
|
export interface WorkloadData {
|
|
159
|
-
workloadName?: string;
|
|
160
|
-
displayName?: string;
|
|
161
|
-
description?: string;
|
|
162
|
-
documentationUrl?: string;
|
|
163
|
-
iconUrl?: string;
|
|
164
|
-
status?: WorkloadStatus;
|
|
165
|
-
statusMessage?: string;
|
|
159
|
+
workloadName?: string | undefined;
|
|
160
|
+
displayName?: string | undefined;
|
|
161
|
+
description?: string | undefined;
|
|
162
|
+
documentationUrl?: string | undefined;
|
|
163
|
+
iconUrl?: string | undefined;
|
|
164
|
+
status?: WorkloadStatus | undefined;
|
|
165
|
+
statusMessage?: string | undefined;
|
|
166
166
|
}
|
|
167
167
|
export interface GetWorkloadOutput {
|
|
168
|
-
workload?: WorkloadData;
|
|
168
|
+
workload?: WorkloadData | undefined;
|
|
169
169
|
}
|
|
170
170
|
export interface GetWorkloadDeploymentPatternInput {
|
|
171
171
|
workloadName: string | undefined;
|
|
@@ -180,23 +180,23 @@ export declare const WorkloadDeploymentPatternStatus: {
|
|
|
180
180
|
export type WorkloadDeploymentPatternStatus =
|
|
181
181
|
(typeof WorkloadDeploymentPatternStatus)[keyof typeof WorkloadDeploymentPatternStatus];
|
|
182
182
|
export interface WorkloadDeploymentPatternData {
|
|
183
|
-
workloadName?: string;
|
|
184
|
-
deploymentPatternName?: string;
|
|
185
|
-
workloadVersionName?: string;
|
|
186
|
-
displayName?: string;
|
|
187
|
-
description?: string;
|
|
188
|
-
status?: WorkloadDeploymentPatternStatus;
|
|
189
|
-
statusMessage?: string;
|
|
190
|
-
specifications?: DeploymentSpecificationsField[];
|
|
183
|
+
workloadName?: string | undefined;
|
|
184
|
+
deploymentPatternName?: string | undefined;
|
|
185
|
+
workloadVersionName?: string | undefined;
|
|
186
|
+
displayName?: string | undefined;
|
|
187
|
+
description?: string | undefined;
|
|
188
|
+
status?: WorkloadDeploymentPatternStatus | undefined;
|
|
189
|
+
statusMessage?: string | undefined;
|
|
190
|
+
specifications?: DeploymentSpecificationsField[] | undefined;
|
|
191
191
|
}
|
|
192
192
|
export interface GetWorkloadDeploymentPatternOutput {
|
|
193
|
-
workloadDeploymentPattern?: WorkloadDeploymentPatternData;
|
|
193
|
+
workloadDeploymentPattern?: WorkloadDeploymentPatternData | undefined;
|
|
194
194
|
}
|
|
195
195
|
export interface ListTagsForResourceInput {
|
|
196
196
|
resourceArn: string | undefined;
|
|
197
197
|
}
|
|
198
198
|
export interface ListTagsForResourceOutput {
|
|
199
|
-
tags?: Record<string, string
|
|
199
|
+
tags?: Record<string, string> | undefined;
|
|
200
200
|
}
|
|
201
201
|
export interface TagResourceInput {
|
|
202
202
|
resourceArn: string | undefined;
|
|
@@ -209,34 +209,36 @@ export interface UntagResourceInput {
|
|
|
209
209
|
}
|
|
210
210
|
export interface UntagResourceOutput {}
|
|
211
211
|
export interface ListWorkloadsInput {
|
|
212
|
-
maxResults?: number;
|
|
213
|
-
nextToken?: string;
|
|
212
|
+
maxResults?: number | undefined;
|
|
213
|
+
nextToken?: string | undefined;
|
|
214
214
|
}
|
|
215
215
|
export interface WorkloadDataSummary {
|
|
216
|
-
workloadName?: string;
|
|
217
|
-
displayName?: string;
|
|
216
|
+
workloadName?: string | undefined;
|
|
217
|
+
displayName?: string | undefined;
|
|
218
218
|
}
|
|
219
219
|
export interface ListWorkloadsOutput {
|
|
220
|
-
workloads?: WorkloadDataSummary[];
|
|
221
|
-
nextToken?: string;
|
|
220
|
+
workloads?: WorkloadDataSummary[] | undefined;
|
|
221
|
+
nextToken?: string | undefined;
|
|
222
222
|
}
|
|
223
223
|
export interface ListWorkloadDeploymentPatternsInput {
|
|
224
224
|
workloadName: string | undefined;
|
|
225
|
-
maxResults?: number;
|
|
226
|
-
nextToken?: string;
|
|
225
|
+
maxResults?: number | undefined;
|
|
226
|
+
nextToken?: string | undefined;
|
|
227
227
|
}
|
|
228
228
|
export interface WorkloadDeploymentPatternDataSummary {
|
|
229
|
-
workloadName?: string;
|
|
230
|
-
deploymentPatternName?: string;
|
|
231
|
-
workloadVersionName?: string;
|
|
232
|
-
displayName?: string;
|
|
233
|
-
description?: string;
|
|
234
|
-
status?: WorkloadDeploymentPatternStatus;
|
|
235
|
-
statusMessage?: string;
|
|
229
|
+
workloadName?: string | undefined;
|
|
230
|
+
deploymentPatternName?: string | undefined;
|
|
231
|
+
workloadVersionName?: string | undefined;
|
|
232
|
+
displayName?: string | undefined;
|
|
233
|
+
description?: string | undefined;
|
|
234
|
+
status?: WorkloadDeploymentPatternStatus | undefined;
|
|
235
|
+
statusMessage?: string | undefined;
|
|
236
236
|
}
|
|
237
237
|
export interface ListWorkloadDeploymentPatternsOutput {
|
|
238
|
-
workloadDeploymentPatterns?:
|
|
239
|
-
|
|
238
|
+
workloadDeploymentPatterns?:
|
|
239
|
+
| WorkloadDeploymentPatternDataSummary[]
|
|
240
|
+
| undefined;
|
|
241
|
+
nextToken?: string | undefined;
|
|
240
242
|
}
|
|
241
243
|
export declare const CreateDeploymentInputFilterSensitiveLog: (
|
|
242
244
|
obj: CreateDeploymentInput
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-launch-wizard",
|
|
3
3
|
"description": "AWS SDK for JavaScript Launch Wizard Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.692.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-launch-wizard",
|
|
@@ -20,43 +20,43 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.692.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.692.0",
|
|
25
|
+
"@aws-sdk/core": "3.692.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.692.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.692.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.692.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.692.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.692.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.692.0",
|
|
32
|
+
"@aws-sdk/types": "3.692.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.692.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.692.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.692.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.11",
|
|
37
|
+
"@smithy/core": "^2.5.2",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.0",
|
|
39
|
+
"@smithy/hash-node": "^3.0.9",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.9",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.11",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.2",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.26",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.9",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.9",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.10",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.6",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.3",
|
|
50
|
+
"@smithy/types": "^3.7.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.9",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.26",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.26",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.5",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.9",
|
|
59
|
+
"@smithy/util-retry": "^3.0.9",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|