@aws-sdk/client-appconfig 3.127.0 → 3.130.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/CHANGELOG.md +33 -0
- package/README.md +24 -23
- package/dist-cjs/AppConfig.js +150 -0
- package/dist-cjs/commands/CreateExtensionAssociationCommand.js +36 -0
- package/dist-cjs/commands/CreateExtensionCommand.js +36 -0
- package/dist-cjs/commands/DeleteExtensionAssociationCommand.js +36 -0
- package/dist-cjs/commands/DeleteExtensionCommand.js +36 -0
- package/dist-cjs/commands/GetExtensionAssociationCommand.js +36 -0
- package/dist-cjs/commands/GetExtensionCommand.js +36 -0
- package/dist-cjs/commands/ListExtensionAssociationsCommand.js +36 -0
- package/dist-cjs/commands/ListExtensionsCommand.js +36 -0
- package/dist-cjs/commands/UpdateExtensionAssociationCommand.js +36 -0
- package/dist-cjs/commands/UpdateExtensionCommand.js +36 -0
- package/dist-cjs/commands/index.js +10 -0
- package/dist-cjs/endpoints.js +19 -2
- package/dist-cjs/models/models_0.js +146 -16
- package/dist-cjs/pagination/ListExtensionAssociationsPaginator.js +36 -0
- package/dist-cjs/pagination/ListExtensionsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1107 -38
- package/dist-es/AppConfig.js +150 -0
- package/dist-es/commands/CreateExtensionAssociationCommand.js +39 -0
- package/dist-es/commands/CreateExtensionCommand.js +39 -0
- package/dist-es/commands/DeleteExtensionAssociationCommand.js +39 -0
- package/dist-es/commands/DeleteExtensionCommand.js +39 -0
- package/dist-es/commands/GetExtensionAssociationCommand.js +39 -0
- package/dist-es/commands/GetExtensionCommand.js +39 -0
- package/dist-es/commands/ListExtensionAssociationsCommand.js +39 -0
- package/dist-es/commands/ListExtensionsCommand.js +39 -0
- package/dist-es/commands/UpdateExtensionAssociationCommand.js +39 -0
- package/dist-es/commands/UpdateExtensionCommand.js +39 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/endpoints.js +19 -2
- package/dist-es/models/models_0.js +103 -13
- package/dist-es/pagination/ListExtensionAssociationsPaginator.js +75 -0
- package/dist-es/pagination/ListExtensionsPaginator.js +75 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +1504 -228
- package/dist-types/AppConfig.d.ts +159 -51
- package/dist-types/AppConfigClient.d.ts +36 -25
- package/dist-types/commands/CreateApplicationCommand.d.ts +5 -5
- package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +5 -6
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +47 -0
- package/dist-types/commands/CreateExtensionCommand.d.ts +43 -0
- package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +2 -1
- package/dist-types/commands/DeleteExtensionAssociationCommand.d.ts +36 -0
- package/dist-types/commands/DeleteExtensionCommand.d.ts +36 -0
- package/dist-types/commands/GetConfigurationCommand.d.ts +6 -5
- package/dist-types/commands/GetEnvironmentCommand.d.ts +6 -5
- package/dist-types/commands/GetExtensionAssociationCommand.d.ts +38 -0
- package/dist-types/commands/GetExtensionCommand.d.ts +35 -0
- package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +38 -0
- package/dist-types/commands/ListExtensionsCommand.d.ts +38 -0
- package/dist-types/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +38 -0
- package/dist-types/commands/UpdateExtensionCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +678 -98
- package/dist-types/pagination/ListExtensionAssociationsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListExtensionsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +30 -0
- package/dist-types/ts3.4/AppConfig.d.ts +50 -0
- package/dist-types/ts3.4/AppConfigClient.d.ts +12 -2
- package/dist-types/ts3.4/commands/CreateExtensionAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateExtensionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteExtensionAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteExtensionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetExtensionAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetExtensionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListExtensionAssociationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListExtensionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateExtensionAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateExtensionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +298 -9
- package/dist-types/ts3.4/pagination/ListExtensionAssociationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListExtensionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +30 -0
- package/package.json +6 -6
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { AppConfigServiceException as __BaseException } from "./AppConfigServiceException";
|
|
3
|
+
|
|
4
|
+
export interface Action {
|
|
5
|
+
|
|
6
|
+
Name?: string;
|
|
7
|
+
|
|
8
|
+
Description?: string;
|
|
9
|
+
|
|
10
|
+
Uri?: string;
|
|
11
|
+
|
|
12
|
+
RoleArn?: string;
|
|
13
|
+
}
|
|
14
|
+
export declare namespace Action {
|
|
15
|
+
|
|
16
|
+
const filterSensitiveLog: (obj: Action) => any;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export interface ActionInvocation {
|
|
20
|
+
|
|
21
|
+
ExtensionIdentifier?: string;
|
|
22
|
+
|
|
23
|
+
ActionName?: string;
|
|
24
|
+
|
|
25
|
+
Uri?: string;
|
|
26
|
+
|
|
27
|
+
RoleArn?: string;
|
|
28
|
+
|
|
29
|
+
ErrorMessage?: string;
|
|
30
|
+
|
|
31
|
+
ErrorCode?: string;
|
|
32
|
+
|
|
33
|
+
InvocationId?: string;
|
|
34
|
+
}
|
|
35
|
+
export declare namespace ActionInvocation {
|
|
36
|
+
|
|
37
|
+
const filterSensitiveLog: (obj: ActionInvocation) => any;
|
|
38
|
+
}
|
|
39
|
+
export declare enum ActionPoint {
|
|
40
|
+
ON_DEPLOYMENT_BAKING = "ON_DEPLOYMENT_BAKING",
|
|
41
|
+
ON_DEPLOYMENT_COMPLETE = "ON_DEPLOYMENT_COMPLETE",
|
|
42
|
+
ON_DEPLOYMENT_ROLLED_BACK = "ON_DEPLOYMENT_ROLLED_BACK",
|
|
43
|
+
ON_DEPLOYMENT_START = "ON_DEPLOYMENT_START",
|
|
44
|
+
ON_DEPLOYMENT_STEP = "ON_DEPLOYMENT_STEP",
|
|
45
|
+
PRE_CREATE_HOSTED_CONFIGURATION_VERSION = "PRE_CREATE_HOSTED_CONFIGURATION_VERSION",
|
|
46
|
+
PRE_START_DEPLOYMENT = "PRE_START_DEPLOYMENT"
|
|
47
|
+
}
|
|
3
48
|
export interface Application {
|
|
4
49
|
|
|
5
50
|
Id?: string;
|
|
@@ -22,6 +67,8 @@ export interface InvalidConfigurationDetail {
|
|
|
22
67
|
Reason?: string;
|
|
23
68
|
|
|
24
69
|
Type?: string;
|
|
70
|
+
|
|
71
|
+
Value?: string;
|
|
25
72
|
}
|
|
26
73
|
export declare namespace InvalidConfigurationDetail {
|
|
27
74
|
|
|
@@ -174,7 +221,7 @@ export interface CreateDeploymentStrategyRequest {
|
|
|
174
221
|
|
|
175
222
|
GrowthType?: GrowthType | string;
|
|
176
223
|
|
|
177
|
-
ReplicateTo
|
|
224
|
+
ReplicateTo?: ReplicateTo | string;
|
|
178
225
|
|
|
179
226
|
Tags?: Record<string, string>;
|
|
180
227
|
}
|
|
@@ -263,6 +310,97 @@ export declare class ConflictException extends __BaseException {
|
|
|
263
310
|
|
|
264
311
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
265
312
|
}
|
|
313
|
+
|
|
314
|
+
export interface Parameter {
|
|
315
|
+
|
|
316
|
+
Description?: string;
|
|
317
|
+
|
|
318
|
+
Required?: boolean;
|
|
319
|
+
}
|
|
320
|
+
export declare namespace Parameter {
|
|
321
|
+
|
|
322
|
+
const filterSensitiveLog: (obj: Parameter) => any;
|
|
323
|
+
}
|
|
324
|
+
export interface CreateExtensionRequest {
|
|
325
|
+
|
|
326
|
+
Name: string | undefined;
|
|
327
|
+
|
|
328
|
+
Description?: string;
|
|
329
|
+
|
|
330
|
+
Actions: Record<string, Action[]> | undefined;
|
|
331
|
+
|
|
332
|
+
Parameters?: Record<string, Parameter>;
|
|
333
|
+
|
|
334
|
+
Tags?: Record<string, string>;
|
|
335
|
+
|
|
336
|
+
LatestVersionNumber?: number;
|
|
337
|
+
}
|
|
338
|
+
export declare namespace CreateExtensionRequest {
|
|
339
|
+
|
|
340
|
+
const filterSensitiveLog: (obj: CreateExtensionRequest) => any;
|
|
341
|
+
}
|
|
342
|
+
export interface Extension {
|
|
343
|
+
|
|
344
|
+
Id?: string;
|
|
345
|
+
|
|
346
|
+
Name?: string;
|
|
347
|
+
|
|
348
|
+
VersionNumber?: number;
|
|
349
|
+
|
|
350
|
+
Arn?: string;
|
|
351
|
+
|
|
352
|
+
Description?: string;
|
|
353
|
+
|
|
354
|
+
Actions?: Record<string, Action[]>;
|
|
355
|
+
|
|
356
|
+
Parameters?: Record<string, Parameter>;
|
|
357
|
+
}
|
|
358
|
+
export declare namespace Extension {
|
|
359
|
+
|
|
360
|
+
const filterSensitiveLog: (obj: Extension) => any;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
364
|
+
readonly name: "ServiceQuotaExceededException";
|
|
365
|
+
readonly $fault: "client";
|
|
366
|
+
Message?: string;
|
|
367
|
+
|
|
368
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
369
|
+
}
|
|
370
|
+
export interface CreateExtensionAssociationRequest {
|
|
371
|
+
|
|
372
|
+
ExtensionIdentifier: string | undefined;
|
|
373
|
+
|
|
374
|
+
ExtensionVersionNumber?: number;
|
|
375
|
+
|
|
376
|
+
ResourceIdentifier: string | undefined;
|
|
377
|
+
|
|
378
|
+
Parameters?: Record<string, string>;
|
|
379
|
+
|
|
380
|
+
Tags?: Record<string, string>;
|
|
381
|
+
}
|
|
382
|
+
export declare namespace CreateExtensionAssociationRequest {
|
|
383
|
+
|
|
384
|
+
const filterSensitiveLog: (obj: CreateExtensionAssociationRequest) => any;
|
|
385
|
+
}
|
|
386
|
+
export interface ExtensionAssociation {
|
|
387
|
+
|
|
388
|
+
Id?: string;
|
|
389
|
+
|
|
390
|
+
ExtensionArn?: string;
|
|
391
|
+
|
|
392
|
+
ResourceArn?: string;
|
|
393
|
+
|
|
394
|
+
Arn?: string;
|
|
395
|
+
|
|
396
|
+
Parameters?: Record<string, string>;
|
|
397
|
+
|
|
398
|
+
ExtensionVersionNumber?: number;
|
|
399
|
+
}
|
|
400
|
+
export declare namespace ExtensionAssociation {
|
|
401
|
+
|
|
402
|
+
const filterSensitiveLog: (obj: ExtensionAssociation) => any;
|
|
403
|
+
}
|
|
266
404
|
export interface CreateHostedConfigurationVersionRequest {
|
|
267
405
|
|
|
268
406
|
ApplicationId: string | undefined;
|
|
@@ -313,14 +451,6 @@ export declare class PayloadTooLargeException extends __BaseException {
|
|
|
313
451
|
|
|
314
452
|
constructor(opts: __ExceptionOptionType<PayloadTooLargeException, __BaseException>);
|
|
315
453
|
}
|
|
316
|
-
|
|
317
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
318
|
-
readonly name: "ServiceQuotaExceededException";
|
|
319
|
-
readonly $fault: "client";
|
|
320
|
-
Message?: string;
|
|
321
|
-
|
|
322
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
323
|
-
}
|
|
324
454
|
export interface DeleteApplicationRequest {
|
|
325
455
|
|
|
326
456
|
ApplicationId: string | undefined;
|
|
@@ -357,6 +487,24 @@ export declare namespace DeleteEnvironmentRequest {
|
|
|
357
487
|
|
|
358
488
|
const filterSensitiveLog: (obj: DeleteEnvironmentRequest) => any;
|
|
359
489
|
}
|
|
490
|
+
export interface DeleteExtensionRequest {
|
|
491
|
+
|
|
492
|
+
ExtensionIdentifier: string | undefined;
|
|
493
|
+
|
|
494
|
+
VersionNumber?: number;
|
|
495
|
+
}
|
|
496
|
+
export declare namespace DeleteExtensionRequest {
|
|
497
|
+
|
|
498
|
+
const filterSensitiveLog: (obj: DeleteExtensionRequest) => any;
|
|
499
|
+
}
|
|
500
|
+
export interface DeleteExtensionAssociationRequest {
|
|
501
|
+
|
|
502
|
+
ExtensionAssociationId: string | undefined;
|
|
503
|
+
}
|
|
504
|
+
export declare namespace DeleteExtensionAssociationRequest {
|
|
505
|
+
|
|
506
|
+
const filterSensitiveLog: (obj: DeleteExtensionAssociationRequest) => any;
|
|
507
|
+
}
|
|
360
508
|
export interface DeleteHostedConfigurationVersionRequest {
|
|
361
509
|
|
|
362
510
|
ApplicationId: string | undefined;
|
|
@@ -415,6 +563,21 @@ export declare namespace GetConfigurationProfileRequest {
|
|
|
415
563
|
|
|
416
564
|
const filterSensitiveLog: (obj: GetConfigurationProfileRequest) => any;
|
|
417
565
|
}
|
|
566
|
+
|
|
567
|
+
export interface AppliedExtension {
|
|
568
|
+
|
|
569
|
+
ExtensionId?: string;
|
|
570
|
+
|
|
571
|
+
ExtensionAssociationId?: string;
|
|
572
|
+
|
|
573
|
+
VersionNumber?: number;
|
|
574
|
+
|
|
575
|
+
Parameters?: Record<string, string>;
|
|
576
|
+
}
|
|
577
|
+
export declare namespace AppliedExtension {
|
|
578
|
+
|
|
579
|
+
const filterSensitiveLog: (obj: AppliedExtension) => any;
|
|
580
|
+
}
|
|
418
581
|
export declare enum DeploymentEventType {
|
|
419
582
|
BAKE_TIME_STARTED = "BAKE_TIME_STARTED",
|
|
420
583
|
DEPLOYMENT_COMPLETED = "DEPLOYMENT_COMPLETED",
|
|
@@ -438,6 +601,8 @@ export interface DeploymentEvent {
|
|
|
438
601
|
|
|
439
602
|
Description?: string;
|
|
440
603
|
|
|
604
|
+
ActionInvocations?: ActionInvocation[];
|
|
605
|
+
|
|
441
606
|
OccurredAt?: Date;
|
|
442
607
|
}
|
|
443
608
|
export declare namespace DeploymentEvent {
|
|
@@ -489,6 +654,8 @@ export interface Deployment {
|
|
|
489
654
|
StartedAt?: Date;
|
|
490
655
|
|
|
491
656
|
CompletedAt?: Date;
|
|
657
|
+
|
|
658
|
+
AppliedExtensions?: AppliedExtension[];
|
|
492
659
|
}
|
|
493
660
|
export declare namespace Deployment {
|
|
494
661
|
|
|
@@ -524,6 +691,24 @@ export declare namespace GetEnvironmentRequest {
|
|
|
524
691
|
|
|
525
692
|
const filterSensitiveLog: (obj: GetEnvironmentRequest) => any;
|
|
526
693
|
}
|
|
694
|
+
export interface GetExtensionRequest {
|
|
695
|
+
|
|
696
|
+
ExtensionIdentifier: string | undefined;
|
|
697
|
+
|
|
698
|
+
VersionNumber?: number;
|
|
699
|
+
}
|
|
700
|
+
export declare namespace GetExtensionRequest {
|
|
701
|
+
|
|
702
|
+
const filterSensitiveLog: (obj: GetExtensionRequest) => any;
|
|
703
|
+
}
|
|
704
|
+
export interface GetExtensionAssociationRequest {
|
|
705
|
+
|
|
706
|
+
ExtensionAssociationId: string | undefined;
|
|
707
|
+
}
|
|
708
|
+
export declare namespace GetExtensionAssociationRequest {
|
|
709
|
+
|
|
710
|
+
const filterSensitiveLog: (obj: GetExtensionAssociationRequest) => any;
|
|
711
|
+
}
|
|
527
712
|
export interface GetHostedConfigurationVersionRequest {
|
|
528
713
|
|
|
529
714
|
ApplicationId: string | undefined;
|
|
@@ -695,6 +880,84 @@ export declare namespace ListEnvironmentsRequest {
|
|
|
695
880
|
const filterSensitiveLog: (obj: ListEnvironmentsRequest) => any;
|
|
696
881
|
}
|
|
697
882
|
|
|
883
|
+
export interface ExtensionAssociationSummary {
|
|
884
|
+
|
|
885
|
+
Id?: string;
|
|
886
|
+
|
|
887
|
+
ExtensionArn?: string;
|
|
888
|
+
|
|
889
|
+
ResourceArn?: string;
|
|
890
|
+
}
|
|
891
|
+
export declare namespace ExtensionAssociationSummary {
|
|
892
|
+
|
|
893
|
+
const filterSensitiveLog: (obj: ExtensionAssociationSummary) => any;
|
|
894
|
+
}
|
|
895
|
+
export interface ExtensionAssociations {
|
|
896
|
+
|
|
897
|
+
Items?: ExtensionAssociationSummary[];
|
|
898
|
+
|
|
899
|
+
NextToken?: string;
|
|
900
|
+
}
|
|
901
|
+
export declare namespace ExtensionAssociations {
|
|
902
|
+
|
|
903
|
+
const filterSensitiveLog: (obj: ExtensionAssociations) => any;
|
|
904
|
+
}
|
|
905
|
+
export interface ListExtensionAssociationsRequest {
|
|
906
|
+
|
|
907
|
+
ResourceIdentifier?: string;
|
|
908
|
+
|
|
909
|
+
ExtensionIdentifier?: string;
|
|
910
|
+
|
|
911
|
+
ExtensionVersionNumber?: number;
|
|
912
|
+
|
|
913
|
+
MaxResults?: number;
|
|
914
|
+
|
|
915
|
+
NextToken?: string;
|
|
916
|
+
}
|
|
917
|
+
export declare namespace ListExtensionAssociationsRequest {
|
|
918
|
+
|
|
919
|
+
const filterSensitiveLog: (obj: ListExtensionAssociationsRequest) => any;
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
export interface ExtensionSummary {
|
|
923
|
+
|
|
924
|
+
Id?: string;
|
|
925
|
+
|
|
926
|
+
Name?: string;
|
|
927
|
+
|
|
928
|
+
VersionNumber?: number;
|
|
929
|
+
|
|
930
|
+
Arn?: string;
|
|
931
|
+
|
|
932
|
+
Description?: string;
|
|
933
|
+
}
|
|
934
|
+
export declare namespace ExtensionSummary {
|
|
935
|
+
|
|
936
|
+
const filterSensitiveLog: (obj: ExtensionSummary) => any;
|
|
937
|
+
}
|
|
938
|
+
export interface Extensions {
|
|
939
|
+
|
|
940
|
+
Items?: ExtensionSummary[];
|
|
941
|
+
|
|
942
|
+
NextToken?: string;
|
|
943
|
+
}
|
|
944
|
+
export declare namespace Extensions {
|
|
945
|
+
|
|
946
|
+
const filterSensitiveLog: (obj: Extensions) => any;
|
|
947
|
+
}
|
|
948
|
+
export interface ListExtensionsRequest {
|
|
949
|
+
|
|
950
|
+
MaxResults?: number;
|
|
951
|
+
|
|
952
|
+
NextToken?: string;
|
|
953
|
+
|
|
954
|
+
Name?: string;
|
|
955
|
+
}
|
|
956
|
+
export declare namespace ListExtensionsRequest {
|
|
957
|
+
|
|
958
|
+
const filterSensitiveLog: (obj: ListExtensionsRequest) => any;
|
|
959
|
+
}
|
|
960
|
+
|
|
698
961
|
export interface HostedConfigurationVersionSummary {
|
|
699
962
|
|
|
700
963
|
ApplicationId?: string;
|
|
@@ -867,6 +1130,32 @@ export declare namespace UpdateEnvironmentRequest {
|
|
|
867
1130
|
|
|
868
1131
|
const filterSensitiveLog: (obj: UpdateEnvironmentRequest) => any;
|
|
869
1132
|
}
|
|
1133
|
+
export interface UpdateExtensionRequest {
|
|
1134
|
+
|
|
1135
|
+
ExtensionIdentifier: string | undefined;
|
|
1136
|
+
|
|
1137
|
+
Description?: string;
|
|
1138
|
+
|
|
1139
|
+
Actions?: Record<string, Action[]>;
|
|
1140
|
+
|
|
1141
|
+
Parameters?: Record<string, Parameter>;
|
|
1142
|
+
|
|
1143
|
+
VersionNumber?: number;
|
|
1144
|
+
}
|
|
1145
|
+
export declare namespace UpdateExtensionRequest {
|
|
1146
|
+
|
|
1147
|
+
const filterSensitiveLog: (obj: UpdateExtensionRequest) => any;
|
|
1148
|
+
}
|
|
1149
|
+
export interface UpdateExtensionAssociationRequest {
|
|
1150
|
+
|
|
1151
|
+
ExtensionAssociationId: string | undefined;
|
|
1152
|
+
|
|
1153
|
+
Parameters?: Record<string, string>;
|
|
1154
|
+
}
|
|
1155
|
+
export declare namespace UpdateExtensionAssociationRequest {
|
|
1156
|
+
|
|
1157
|
+
const filterSensitiveLog: (obj: UpdateExtensionAssociationRequest) => any;
|
|
1158
|
+
}
|
|
870
1159
|
export interface ValidateConfigurationRequest {
|
|
871
1160
|
|
|
872
1161
|
ApplicationId: string | undefined;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput } from "../commands/ListExtensionAssociationsCommand";
|
|
3
|
+
import { AppConfigPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListExtensionAssociations(config: AppConfigPaginationConfiguration, input: ListExtensionAssociationsCommandInput, ...additionalArguments: any): Paginator<ListExtensionAssociationsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListExtensionsCommandInput, ListExtensionsCommandOutput } from "../commands/ListExtensionsCommand";
|
|
3
|
+
import { AppConfigPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListExtensions(config: AppConfigPaginationConfiguration, input: ListExtensionsCommandInput, ...additionalArguments: any): Paginator<ListExtensionsCommandOutput>;
|
|
@@ -4,4 +4,6 @@ export * from "./ListConfigurationProfilesPaginator";
|
|
|
4
4
|
export * from "./ListDeploymentStrategiesPaginator";
|
|
5
5
|
export * from "./ListDeploymentsPaginator";
|
|
6
6
|
export * from "./ListEnvironmentsPaginator";
|
|
7
|
+
export * from "./ListExtensionAssociationsPaginator";
|
|
8
|
+
export * from "./ListExtensionsPaginator";
|
|
7
9
|
export * from "./ListHostedConfigurationVersionsPaginator";
|
|
@@ -4,11 +4,15 @@ import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from ".
|
|
|
4
4
|
import { CreateConfigurationProfileCommandInput, CreateConfigurationProfileCommandOutput } from "../commands/CreateConfigurationProfileCommand";
|
|
5
5
|
import { CreateDeploymentStrategyCommandInput, CreateDeploymentStrategyCommandOutput } from "../commands/CreateDeploymentStrategyCommand";
|
|
6
6
|
import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "../commands/CreateEnvironmentCommand";
|
|
7
|
+
import { CreateExtensionAssociationCommandInput, CreateExtensionAssociationCommandOutput } from "../commands/CreateExtensionAssociationCommand";
|
|
8
|
+
import { CreateExtensionCommandInput, CreateExtensionCommandOutput } from "../commands/CreateExtensionCommand";
|
|
7
9
|
import { CreateHostedConfigurationVersionCommandInput, CreateHostedConfigurationVersionCommandOutput } from "../commands/CreateHostedConfigurationVersionCommand";
|
|
8
10
|
import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "../commands/DeleteApplicationCommand";
|
|
9
11
|
import { DeleteConfigurationProfileCommandInput, DeleteConfigurationProfileCommandOutput } from "../commands/DeleteConfigurationProfileCommand";
|
|
10
12
|
import { DeleteDeploymentStrategyCommandInput, DeleteDeploymentStrategyCommandOutput } from "../commands/DeleteDeploymentStrategyCommand";
|
|
11
13
|
import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "../commands/DeleteEnvironmentCommand";
|
|
14
|
+
import { DeleteExtensionAssociationCommandInput, DeleteExtensionAssociationCommandOutput } from "../commands/DeleteExtensionAssociationCommand";
|
|
15
|
+
import { DeleteExtensionCommandInput, DeleteExtensionCommandOutput } from "../commands/DeleteExtensionCommand";
|
|
12
16
|
import { DeleteHostedConfigurationVersionCommandInput, DeleteHostedConfigurationVersionCommandOutput } from "../commands/DeleteHostedConfigurationVersionCommand";
|
|
13
17
|
import { GetApplicationCommandInput, GetApplicationCommandOutput } from "../commands/GetApplicationCommand";
|
|
14
18
|
import { GetConfigurationCommandInput, GetConfigurationCommandOutput } from "../commands/GetConfigurationCommand";
|
|
@@ -16,12 +20,16 @@ import { GetConfigurationProfileCommandInput, GetConfigurationProfileCommandOutp
|
|
|
16
20
|
import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "../commands/GetDeploymentCommand";
|
|
17
21
|
import { GetDeploymentStrategyCommandInput, GetDeploymentStrategyCommandOutput } from "../commands/GetDeploymentStrategyCommand";
|
|
18
22
|
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "../commands/GetEnvironmentCommand";
|
|
23
|
+
import { GetExtensionAssociationCommandInput, GetExtensionAssociationCommandOutput } from "../commands/GetExtensionAssociationCommand";
|
|
24
|
+
import { GetExtensionCommandInput, GetExtensionCommandOutput } from "../commands/GetExtensionCommand";
|
|
19
25
|
import { GetHostedConfigurationVersionCommandInput, GetHostedConfigurationVersionCommandOutput } from "../commands/GetHostedConfigurationVersionCommand";
|
|
20
26
|
import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
|
|
21
27
|
import { ListConfigurationProfilesCommandInput, ListConfigurationProfilesCommandOutput } from "../commands/ListConfigurationProfilesCommand";
|
|
22
28
|
import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "../commands/ListDeploymentsCommand";
|
|
23
29
|
import { ListDeploymentStrategiesCommandInput, ListDeploymentStrategiesCommandOutput } from "../commands/ListDeploymentStrategiesCommand";
|
|
24
30
|
import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
|
|
31
|
+
import { ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput } from "../commands/ListExtensionAssociationsCommand";
|
|
32
|
+
import { ListExtensionsCommandInput, ListExtensionsCommandOutput } from "../commands/ListExtensionsCommand";
|
|
25
33
|
import { ListHostedConfigurationVersionsCommandInput, ListHostedConfigurationVersionsCommandOutput } from "../commands/ListHostedConfigurationVersionsCommand";
|
|
26
34
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
27
35
|
import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "../commands/StartDeploymentCommand";
|
|
@@ -32,16 +40,22 @@ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from ".
|
|
|
32
40
|
import { UpdateConfigurationProfileCommandInput, UpdateConfigurationProfileCommandOutput } from "../commands/UpdateConfigurationProfileCommand";
|
|
33
41
|
import { UpdateDeploymentStrategyCommandInput, UpdateDeploymentStrategyCommandOutput } from "../commands/UpdateDeploymentStrategyCommand";
|
|
34
42
|
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "../commands/UpdateEnvironmentCommand";
|
|
43
|
+
import { UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput } from "../commands/UpdateExtensionAssociationCommand";
|
|
44
|
+
import { UpdateExtensionCommandInput, UpdateExtensionCommandOutput } from "../commands/UpdateExtensionCommand";
|
|
35
45
|
import { ValidateConfigurationCommandInput, ValidateConfigurationCommandOutput } from "../commands/ValidateConfigurationCommand";
|
|
36
46
|
export declare const serializeAws_restJson1CreateApplicationCommand: (input: CreateApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
47
|
export declare const serializeAws_restJson1CreateConfigurationProfileCommand: (input: CreateConfigurationProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
48
|
export declare const serializeAws_restJson1CreateDeploymentStrategyCommand: (input: CreateDeploymentStrategyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
49
|
export declare const serializeAws_restJson1CreateEnvironmentCommand: (input: CreateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
+
export declare const serializeAws_restJson1CreateExtensionCommand: (input: CreateExtensionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
|
+
export declare const serializeAws_restJson1CreateExtensionAssociationCommand: (input: CreateExtensionAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
52
|
export declare const serializeAws_restJson1CreateHostedConfigurationVersionCommand: (input: CreateHostedConfigurationVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
53
|
export declare const serializeAws_restJson1DeleteApplicationCommand: (input: DeleteApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
54
|
export declare const serializeAws_restJson1DeleteConfigurationProfileCommand: (input: DeleteConfigurationProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
55
|
export declare const serializeAws_restJson1DeleteDeploymentStrategyCommand: (input: DeleteDeploymentStrategyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
56
|
export declare const serializeAws_restJson1DeleteEnvironmentCommand: (input: DeleteEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
+
export declare const serializeAws_restJson1DeleteExtensionCommand: (input: DeleteExtensionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
+
export declare const serializeAws_restJson1DeleteExtensionAssociationCommand: (input: DeleteExtensionAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
59
|
export declare const serializeAws_restJson1DeleteHostedConfigurationVersionCommand: (input: DeleteHostedConfigurationVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
60
|
export declare const serializeAws_restJson1GetApplicationCommand: (input: GetApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
61
|
export declare const serializeAws_restJson1GetConfigurationCommand: (input: GetConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -49,12 +63,16 @@ export declare const serializeAws_restJson1GetConfigurationProfileCommand: (inpu
|
|
|
49
63
|
export declare const serializeAws_restJson1GetDeploymentCommand: (input: GetDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
64
|
export declare const serializeAws_restJson1GetDeploymentStrategyCommand: (input: GetDeploymentStrategyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
65
|
export declare const serializeAws_restJson1GetEnvironmentCommand: (input: GetEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
+
export declare const serializeAws_restJson1GetExtensionCommand: (input: GetExtensionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
|
+
export declare const serializeAws_restJson1GetExtensionAssociationCommand: (input: GetExtensionAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
68
|
export declare const serializeAws_restJson1GetHostedConfigurationVersionCommand: (input: GetHostedConfigurationVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
69
|
export declare const serializeAws_restJson1ListApplicationsCommand: (input: ListApplicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
70
|
export declare const serializeAws_restJson1ListConfigurationProfilesCommand: (input: ListConfigurationProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
71
|
export declare const serializeAws_restJson1ListDeploymentsCommand: (input: ListDeploymentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
72
|
export declare const serializeAws_restJson1ListDeploymentStrategiesCommand: (input: ListDeploymentStrategiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
73
|
export declare const serializeAws_restJson1ListEnvironmentsCommand: (input: ListEnvironmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const serializeAws_restJson1ListExtensionAssociationsCommand: (input: ListExtensionAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
|
+
export declare const serializeAws_restJson1ListExtensionsCommand: (input: ListExtensionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
76
|
export declare const serializeAws_restJson1ListHostedConfigurationVersionsCommand: (input: ListHostedConfigurationVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
77
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
78
|
export declare const serializeAws_restJson1StartDeploymentCommand: (input: StartDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -65,16 +83,22 @@ export declare const serializeAws_restJson1UpdateApplicationCommand: (input: Upd
|
|
|
65
83
|
export declare const serializeAws_restJson1UpdateConfigurationProfileCommand: (input: UpdateConfigurationProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
84
|
export declare const serializeAws_restJson1UpdateDeploymentStrategyCommand: (input: UpdateDeploymentStrategyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
85
|
export declare const serializeAws_restJson1UpdateEnvironmentCommand: (input: UpdateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const serializeAws_restJson1UpdateExtensionCommand: (input: UpdateExtensionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
|
+
export declare const serializeAws_restJson1UpdateExtensionAssociationCommand: (input: UpdateExtensionAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
88
|
export declare const serializeAws_restJson1ValidateConfigurationCommand: (input: ValidateConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
89
|
export declare const deserializeAws_restJson1CreateApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateApplicationCommandOutput>;
|
|
70
90
|
export declare const deserializeAws_restJson1CreateConfigurationProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfigurationProfileCommandOutput>;
|
|
71
91
|
export declare const deserializeAws_restJson1CreateDeploymentStrategyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDeploymentStrategyCommandOutput>;
|
|
72
92
|
export declare const deserializeAws_restJson1CreateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentCommandOutput>;
|
|
93
|
+
export declare const deserializeAws_restJson1CreateExtensionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateExtensionCommandOutput>;
|
|
94
|
+
export declare const deserializeAws_restJson1CreateExtensionAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateExtensionAssociationCommandOutput>;
|
|
73
95
|
export declare const deserializeAws_restJson1CreateHostedConfigurationVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateHostedConfigurationVersionCommandOutput>;
|
|
74
96
|
export declare const deserializeAws_restJson1DeleteApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteApplicationCommandOutput>;
|
|
75
97
|
export declare const deserializeAws_restJson1DeleteConfigurationProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfigurationProfileCommandOutput>;
|
|
76
98
|
export declare const deserializeAws_restJson1DeleteDeploymentStrategyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDeploymentStrategyCommandOutput>;
|
|
77
99
|
export declare const deserializeAws_restJson1DeleteEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentCommandOutput>;
|
|
100
|
+
export declare const deserializeAws_restJson1DeleteExtensionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteExtensionCommandOutput>;
|
|
101
|
+
export declare const deserializeAws_restJson1DeleteExtensionAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteExtensionAssociationCommandOutput>;
|
|
78
102
|
export declare const deserializeAws_restJson1DeleteHostedConfigurationVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteHostedConfigurationVersionCommandOutput>;
|
|
79
103
|
export declare const deserializeAws_restJson1GetApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetApplicationCommandOutput>;
|
|
80
104
|
export declare const deserializeAws_restJson1GetConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConfigurationCommandOutput>;
|
|
@@ -82,12 +106,16 @@ export declare const deserializeAws_restJson1GetConfigurationProfileCommand: (ou
|
|
|
82
106
|
export declare const deserializeAws_restJson1GetDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDeploymentCommandOutput>;
|
|
83
107
|
export declare const deserializeAws_restJson1GetDeploymentStrategyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDeploymentStrategyCommandOutput>;
|
|
84
108
|
export declare const deserializeAws_restJson1GetEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentCommandOutput>;
|
|
109
|
+
export declare const deserializeAws_restJson1GetExtensionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExtensionCommandOutput>;
|
|
110
|
+
export declare const deserializeAws_restJson1GetExtensionAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExtensionAssociationCommandOutput>;
|
|
85
111
|
export declare const deserializeAws_restJson1GetHostedConfigurationVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetHostedConfigurationVersionCommandOutput>;
|
|
86
112
|
export declare const deserializeAws_restJson1ListApplicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListApplicationsCommandOutput>;
|
|
87
113
|
export declare const deserializeAws_restJson1ListConfigurationProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfigurationProfilesCommandOutput>;
|
|
88
114
|
export declare const deserializeAws_restJson1ListDeploymentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDeploymentsCommandOutput>;
|
|
89
115
|
export declare const deserializeAws_restJson1ListDeploymentStrategiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDeploymentStrategiesCommandOutput>;
|
|
90
116
|
export declare const deserializeAws_restJson1ListEnvironmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentsCommandOutput>;
|
|
117
|
+
export declare const deserializeAws_restJson1ListExtensionAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExtensionAssociationsCommandOutput>;
|
|
118
|
+
export declare const deserializeAws_restJson1ListExtensionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExtensionsCommandOutput>;
|
|
91
119
|
export declare const deserializeAws_restJson1ListHostedConfigurationVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListHostedConfigurationVersionsCommandOutput>;
|
|
92
120
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
93
121
|
export declare const deserializeAws_restJson1StartDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartDeploymentCommandOutput>;
|
|
@@ -98,4 +126,6 @@ export declare const deserializeAws_restJson1UpdateApplicationCommand: (output:
|
|
|
98
126
|
export declare const deserializeAws_restJson1UpdateConfigurationProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigurationProfileCommandOutput>;
|
|
99
127
|
export declare const deserializeAws_restJson1UpdateDeploymentStrategyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDeploymentStrategyCommandOutput>;
|
|
100
128
|
export declare const deserializeAws_restJson1UpdateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnvironmentCommandOutput>;
|
|
129
|
+
export declare const deserializeAws_restJson1UpdateExtensionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateExtensionCommandOutput>;
|
|
130
|
+
export declare const deserializeAws_restJson1UpdateExtensionAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateExtensionAssociationCommandOutput>;
|
|
101
131
|
export declare const deserializeAws_restJson1ValidateConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ValidateConfigurationCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appconfig",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appconfig Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.130.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",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.130.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.130.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.127.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "3.127.0",
|
|
31
31
|
"@aws-sdk/middleware-retry": "3.127.0",
|
|
32
32
|
"@aws-sdk/middleware-serde": "3.127.0",
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.130.0",
|
|
34
34
|
"@aws-sdk/middleware-stack": "3.127.0",
|
|
35
35
|
"@aws-sdk/middleware-user-agent": "3.127.0",
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
46
|
"@aws-sdk/util-defaults-mode-browser": "3.127.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.130.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|