@aws-sdk/client-cloudtrail 3.171.0 → 3.178.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 +19 -0
- package/dist-cjs/CloudTrail.js +75 -0
- package/dist-cjs/commands/GetImportCommand.js +36 -0
- package/dist-cjs/commands/ListImportFailuresCommand.js +36 -0
- package/dist-cjs/commands/ListImportsCommand.js +36 -0
- package/dist-cjs/commands/StartImportCommand.js +36 -0
- package/dist-cjs/commands/StopImportCommand.js +36 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +148 -3
- package/dist-cjs/pagination/ListImportFailuresPaginator.js +36 -0
- package/dist-cjs/pagination/ListImportsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +575 -2
- package/dist-es/CloudTrail.js +75 -0
- package/dist-es/commands/GetImportCommand.js +39 -0
- package/dist-es/commands/ListImportFailuresCommand.js +39 -0
- package/dist-es/commands/ListImportsCommand.js +39 -0
- package/dist-es/commands/StartImportCommand.js +39 -0
- package/dist-es/commands/StopImportCommand.js +39 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +94 -0
- package/dist-es/pagination/ListImportFailuresPaginator.js +75 -0
- package/dist-es/pagination/ListImportsPaginator.js +75 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +722 -60
- package/dist-types/CloudTrail.d.ts +71 -4
- package/dist-types/CloudTrailClient.d.ts +7 -2
- package/dist-types/commands/GetEventSelectorsCommand.d.ts +15 -2
- package/dist-types/commands/GetImportCommand.d.ts +37 -0
- package/dist-types/commands/ListImportFailuresCommand.d.ts +37 -0
- package/dist-types/commands/ListImportsCommand.d.ts +37 -0
- package/dist-types/commands/PutEventSelectorsCommand.d.ts +3 -2
- package/dist-types/commands/StartImportCommand.d.ts +45 -0
- package/dist-types/commands/StopImportCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +602 -4
- package/dist-types/pagination/ListImportFailuresPaginator.d.ts +4 -0
- package/dist-types/pagination/ListImportsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +15 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/CloudTrail.d.ts +85 -0
- package/dist-types/ts3.4/CloudTrailClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/GetImportCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/ListImportFailuresCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListImportsCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/StartImportCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/StopImportCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +197 -0
- package/dist-types/ts3.4/pagination/ListImportFailuresPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListImportsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +60 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -1
- package/package.json +26 -26
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { CloudTrailServiceException as __BaseException } from "./CloudTrailServiceException";
|
|
3
|
+
export declare class AccountHasOngoingImportException extends __BaseException {
|
|
4
|
+
readonly name: "AccountHasOngoingImportException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<
|
|
9
|
+
AccountHasOngoingImportException,
|
|
10
|
+
__BaseException
|
|
11
|
+
>
|
|
12
|
+
);
|
|
13
|
+
}
|
|
3
14
|
export interface Tag {
|
|
4
15
|
Key: string | undefined;
|
|
5
16
|
Value?: string;
|
|
@@ -499,6 +510,17 @@ export interface DeleteEventDataStoreRequest {
|
|
|
499
510
|
EventDataStore: string | undefined;
|
|
500
511
|
}
|
|
501
512
|
export interface DeleteEventDataStoreResponse {}
|
|
513
|
+
export declare class EventDataStoreHasOngoingImportException extends __BaseException {
|
|
514
|
+
readonly name: "EventDataStoreHasOngoingImportException";
|
|
515
|
+
readonly $fault: "client";
|
|
516
|
+
Message?: string;
|
|
517
|
+
constructor(
|
|
518
|
+
opts: __ExceptionOptionType<
|
|
519
|
+
EventDataStoreHasOngoingImportException,
|
|
520
|
+
__BaseException
|
|
521
|
+
>
|
|
522
|
+
);
|
|
523
|
+
}
|
|
502
524
|
export declare class EventDataStoreTerminationProtectedException extends __BaseException {
|
|
503
525
|
readonly name: "EventDataStoreTerminationProtectedException";
|
|
504
526
|
readonly $fault: "client";
|
|
@@ -633,6 +655,50 @@ export interface GetEventSelectorsResponse {
|
|
|
633
655
|
EventSelectors?: EventSelector[];
|
|
634
656
|
AdvancedEventSelectors?: AdvancedEventSelector[];
|
|
635
657
|
}
|
|
658
|
+
export interface GetImportRequest {
|
|
659
|
+
ImportId: string | undefined;
|
|
660
|
+
}
|
|
661
|
+
export interface S3ImportSource {
|
|
662
|
+
S3LocationUri: string | undefined;
|
|
663
|
+
S3BucketRegion: string | undefined;
|
|
664
|
+
S3BucketAccessRoleArn: string | undefined;
|
|
665
|
+
}
|
|
666
|
+
export interface ImportSource {
|
|
667
|
+
S3: S3ImportSource | undefined;
|
|
668
|
+
}
|
|
669
|
+
export interface ImportStatistics {
|
|
670
|
+
PrefixesFound?: number;
|
|
671
|
+
PrefixesCompleted?: number;
|
|
672
|
+
FilesCompleted?: number;
|
|
673
|
+
EventsCompleted?: number;
|
|
674
|
+
FailedEntries?: number;
|
|
675
|
+
}
|
|
676
|
+
export declare enum ImportStatus {
|
|
677
|
+
COMPLETED = "COMPLETED",
|
|
678
|
+
FAILED = "FAILED",
|
|
679
|
+
INITIALIZING = "INITIALIZING",
|
|
680
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
681
|
+
STOPPED = "STOPPED",
|
|
682
|
+
}
|
|
683
|
+
export interface GetImportResponse {
|
|
684
|
+
ImportId?: string;
|
|
685
|
+
Destinations?: string[];
|
|
686
|
+
ImportSource?: ImportSource;
|
|
687
|
+
StartEventTime?: Date;
|
|
688
|
+
EndEventTime?: Date;
|
|
689
|
+
ImportStatus?: ImportStatus | string;
|
|
690
|
+
CreatedTimestamp?: Date;
|
|
691
|
+
UpdatedTimestamp?: Date;
|
|
692
|
+
ImportStatistics?: ImportStatistics;
|
|
693
|
+
}
|
|
694
|
+
export declare class ImportNotFoundException extends __BaseException {
|
|
695
|
+
readonly name: "ImportNotFoundException";
|
|
696
|
+
readonly $fault: "client";
|
|
697
|
+
Message?: string;
|
|
698
|
+
constructor(
|
|
699
|
+
opts: __ExceptionOptionType<ImportNotFoundException, __BaseException>
|
|
700
|
+
);
|
|
701
|
+
}
|
|
636
702
|
export interface GetInsightSelectorsRequest {
|
|
637
703
|
TrailName: string | undefined;
|
|
638
704
|
}
|
|
@@ -745,6 +811,44 @@ export interface ListEventDataStoresResponse {
|
|
|
745
811
|
EventDataStores?: EventDataStore[];
|
|
746
812
|
NextToken?: string;
|
|
747
813
|
}
|
|
814
|
+
export interface ListImportFailuresRequest {
|
|
815
|
+
ImportId: string | undefined;
|
|
816
|
+
MaxResults?: number;
|
|
817
|
+
NextToken?: string;
|
|
818
|
+
}
|
|
819
|
+
export declare enum ImportFailureStatus {
|
|
820
|
+
FAILED = "FAILED",
|
|
821
|
+
RETRY = "RETRY",
|
|
822
|
+
SUCCEEDED = "SUCCEEDED",
|
|
823
|
+
}
|
|
824
|
+
export interface ImportFailureListItem {
|
|
825
|
+
Location?: string;
|
|
826
|
+
Status?: ImportFailureStatus | string;
|
|
827
|
+
ErrorType?: string;
|
|
828
|
+
ErrorMessage?: string;
|
|
829
|
+
LastUpdatedTime?: Date;
|
|
830
|
+
}
|
|
831
|
+
export interface ListImportFailuresResponse {
|
|
832
|
+
Failures?: ImportFailureListItem[];
|
|
833
|
+
NextToken?: string;
|
|
834
|
+
}
|
|
835
|
+
export interface ListImportsRequest {
|
|
836
|
+
MaxResults?: number;
|
|
837
|
+
Destination?: string;
|
|
838
|
+
ImportStatus?: ImportStatus | string;
|
|
839
|
+
NextToken?: string;
|
|
840
|
+
}
|
|
841
|
+
export interface ImportsListItem {
|
|
842
|
+
ImportId?: string;
|
|
843
|
+
ImportStatus?: ImportStatus | string;
|
|
844
|
+
Destinations?: string[];
|
|
845
|
+
CreatedTimestamp?: Date;
|
|
846
|
+
UpdatedTimestamp?: Date;
|
|
847
|
+
}
|
|
848
|
+
export interface ListImportsResponse {
|
|
849
|
+
Imports?: ImportsListItem[];
|
|
850
|
+
NextToken?: string;
|
|
851
|
+
}
|
|
748
852
|
export declare class InvalidTimeRangeException extends __BaseException {
|
|
749
853
|
readonly name: "InvalidTimeRangeException";
|
|
750
854
|
readonly $fault: "client";
|
|
@@ -964,6 +1068,42 @@ export interface RestoreEventDataStoreResponse {
|
|
|
964
1068
|
CreatedTimestamp?: Date;
|
|
965
1069
|
UpdatedTimestamp?: Date;
|
|
966
1070
|
}
|
|
1071
|
+
export declare class InvalidEventDataStoreCategoryException extends __BaseException {
|
|
1072
|
+
readonly name: "InvalidEventDataStoreCategoryException";
|
|
1073
|
+
readonly $fault: "client";
|
|
1074
|
+
Message?: string;
|
|
1075
|
+
constructor(
|
|
1076
|
+
opts: __ExceptionOptionType<
|
|
1077
|
+
InvalidEventDataStoreCategoryException,
|
|
1078
|
+
__BaseException
|
|
1079
|
+
>
|
|
1080
|
+
);
|
|
1081
|
+
}
|
|
1082
|
+
export declare class InvalidImportSourceException extends __BaseException {
|
|
1083
|
+
readonly name: "InvalidImportSourceException";
|
|
1084
|
+
readonly $fault: "client";
|
|
1085
|
+
Message?: string;
|
|
1086
|
+
constructor(
|
|
1087
|
+
opts: __ExceptionOptionType<InvalidImportSourceException, __BaseException>
|
|
1088
|
+
);
|
|
1089
|
+
}
|
|
1090
|
+
export interface StartImportRequest {
|
|
1091
|
+
Destinations?: string[];
|
|
1092
|
+
ImportSource?: ImportSource;
|
|
1093
|
+
StartEventTime?: Date;
|
|
1094
|
+
EndEventTime?: Date;
|
|
1095
|
+
ImportId?: string;
|
|
1096
|
+
}
|
|
1097
|
+
export interface StartImportResponse {
|
|
1098
|
+
ImportId?: string;
|
|
1099
|
+
Destinations?: string[];
|
|
1100
|
+
ImportSource?: ImportSource;
|
|
1101
|
+
StartEventTime?: Date;
|
|
1102
|
+
EndEventTime?: Date;
|
|
1103
|
+
ImportStatus?: ImportStatus | string;
|
|
1104
|
+
CreatedTimestamp?: Date;
|
|
1105
|
+
UpdatedTimestamp?: Date;
|
|
1106
|
+
}
|
|
967
1107
|
export interface StartLoggingRequest {
|
|
968
1108
|
Name: string | undefined;
|
|
969
1109
|
}
|
|
@@ -990,6 +1130,20 @@ export interface StartQueryRequest {
|
|
|
990
1130
|
export interface StartQueryResponse {
|
|
991
1131
|
QueryId?: string;
|
|
992
1132
|
}
|
|
1133
|
+
export interface StopImportRequest {
|
|
1134
|
+
ImportId: string | undefined;
|
|
1135
|
+
}
|
|
1136
|
+
export interface StopImportResponse {
|
|
1137
|
+
ImportId?: string;
|
|
1138
|
+
ImportSource?: ImportSource;
|
|
1139
|
+
Destinations?: string[];
|
|
1140
|
+
ImportStatus?: ImportStatus | string;
|
|
1141
|
+
CreatedTimestamp?: Date;
|
|
1142
|
+
UpdatedTimestamp?: Date;
|
|
1143
|
+
StartEventTime?: Date;
|
|
1144
|
+
EndEventTime?: Date;
|
|
1145
|
+
ImportStatistics?: ImportStatistics;
|
|
1146
|
+
}
|
|
993
1147
|
export interface StopLoggingRequest {
|
|
994
1148
|
Name: string | undefined;
|
|
995
1149
|
}
|
|
@@ -1127,6 +1281,19 @@ export declare const EventSelectorFilterSensitiveLog: (
|
|
|
1127
1281
|
export declare const GetEventSelectorsResponseFilterSensitiveLog: (
|
|
1128
1282
|
obj: GetEventSelectorsResponse
|
|
1129
1283
|
) => any;
|
|
1284
|
+
export declare const GetImportRequestFilterSensitiveLog: (
|
|
1285
|
+
obj: GetImportRequest
|
|
1286
|
+
) => any;
|
|
1287
|
+
export declare const S3ImportSourceFilterSensitiveLog: (
|
|
1288
|
+
obj: S3ImportSource
|
|
1289
|
+
) => any;
|
|
1290
|
+
export declare const ImportSourceFilterSensitiveLog: (obj: ImportSource) => any;
|
|
1291
|
+
export declare const ImportStatisticsFilterSensitiveLog: (
|
|
1292
|
+
obj: ImportStatistics
|
|
1293
|
+
) => any;
|
|
1294
|
+
export declare const GetImportResponseFilterSensitiveLog: (
|
|
1295
|
+
obj: GetImportResponse
|
|
1296
|
+
) => any;
|
|
1130
1297
|
export declare const GetInsightSelectorsRequestFilterSensitiveLog: (
|
|
1131
1298
|
obj: GetInsightSelectorsRequest
|
|
1132
1299
|
) => any;
|
|
@@ -1172,6 +1339,24 @@ export declare const EventDataStoreFilterSensitiveLog: (
|
|
|
1172
1339
|
export declare const ListEventDataStoresResponseFilterSensitiveLog: (
|
|
1173
1340
|
obj: ListEventDataStoresResponse
|
|
1174
1341
|
) => any;
|
|
1342
|
+
export declare const ListImportFailuresRequestFilterSensitiveLog: (
|
|
1343
|
+
obj: ListImportFailuresRequest
|
|
1344
|
+
) => any;
|
|
1345
|
+
export declare const ImportFailureListItemFilterSensitiveLog: (
|
|
1346
|
+
obj: ImportFailureListItem
|
|
1347
|
+
) => any;
|
|
1348
|
+
export declare const ListImportFailuresResponseFilterSensitiveLog: (
|
|
1349
|
+
obj: ListImportFailuresResponse
|
|
1350
|
+
) => any;
|
|
1351
|
+
export declare const ListImportsRequestFilterSensitiveLog: (
|
|
1352
|
+
obj: ListImportsRequest
|
|
1353
|
+
) => any;
|
|
1354
|
+
export declare const ImportsListItemFilterSensitiveLog: (
|
|
1355
|
+
obj: ImportsListItem
|
|
1356
|
+
) => any;
|
|
1357
|
+
export declare const ListImportsResponseFilterSensitiveLog: (
|
|
1358
|
+
obj: ListImportsResponse
|
|
1359
|
+
) => any;
|
|
1175
1360
|
export declare const ListPublicKeysRequestFilterSensitiveLog: (
|
|
1176
1361
|
obj: ListPublicKeysRequest
|
|
1177
1362
|
) => any;
|
|
@@ -1235,6 +1420,12 @@ export declare const RestoreEventDataStoreRequestFilterSensitiveLog: (
|
|
|
1235
1420
|
export declare const RestoreEventDataStoreResponseFilterSensitiveLog: (
|
|
1236
1421
|
obj: RestoreEventDataStoreResponse
|
|
1237
1422
|
) => any;
|
|
1423
|
+
export declare const StartImportRequestFilterSensitiveLog: (
|
|
1424
|
+
obj: StartImportRequest
|
|
1425
|
+
) => any;
|
|
1426
|
+
export declare const StartImportResponseFilterSensitiveLog: (
|
|
1427
|
+
obj: StartImportResponse
|
|
1428
|
+
) => any;
|
|
1238
1429
|
export declare const StartLoggingRequestFilterSensitiveLog: (
|
|
1239
1430
|
obj: StartLoggingRequest
|
|
1240
1431
|
) => any;
|
|
@@ -1247,6 +1438,12 @@ export declare const StartQueryRequestFilterSensitiveLog: (
|
|
|
1247
1438
|
export declare const StartQueryResponseFilterSensitiveLog: (
|
|
1248
1439
|
obj: StartQueryResponse
|
|
1249
1440
|
) => any;
|
|
1441
|
+
export declare const StopImportRequestFilterSensitiveLog: (
|
|
1442
|
+
obj: StopImportRequest
|
|
1443
|
+
) => any;
|
|
1444
|
+
export declare const StopImportResponseFilterSensitiveLog: (
|
|
1445
|
+
obj: StopImportResponse
|
|
1446
|
+
) => any;
|
|
1250
1447
|
export declare const StopLoggingRequestFilterSensitiveLog: (
|
|
1251
1448
|
obj: StopLoggingRequest
|
|
1252
1449
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListImportFailuresCommandInput,
|
|
4
|
+
ListImportFailuresCommandOutput,
|
|
5
|
+
} from "../commands/ListImportFailuresCommand";
|
|
6
|
+
import { CloudTrailPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListImportFailures(
|
|
8
|
+
config: CloudTrailPaginationConfiguration,
|
|
9
|
+
input: ListImportFailuresCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListImportFailuresCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListImportsCommandInput,
|
|
4
|
+
ListImportsCommandOutput,
|
|
5
|
+
} from "../commands/ListImportsCommand";
|
|
6
|
+
import { CloudTrailPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListImports(
|
|
8
|
+
config: CloudTrailPaginationConfiguration,
|
|
9
|
+
input: ListImportsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListImportsCommandOutput>;
|
|
@@ -2,6 +2,8 @@ export * from "./GetQueryResultsPaginator";
|
|
|
2
2
|
export * from "./Interfaces";
|
|
3
3
|
export * from "./ListChannelsPaginator";
|
|
4
4
|
export * from "./ListEventDataStoresPaginator";
|
|
5
|
+
export * from "./ListImportFailuresPaginator";
|
|
6
|
+
export * from "./ListImportsPaginator";
|
|
5
7
|
export * from "./ListPublicKeysPaginator";
|
|
6
8
|
export * from "./ListQueriesPaginator";
|
|
7
9
|
export * from "./ListTagsPaginator";
|
|
@@ -47,6 +47,10 @@ import {
|
|
|
47
47
|
GetEventSelectorsCommandInput,
|
|
48
48
|
GetEventSelectorsCommandOutput,
|
|
49
49
|
} from "../commands/GetEventSelectorsCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetImportCommandInput,
|
|
52
|
+
GetImportCommandOutput,
|
|
53
|
+
} from "../commands/GetImportCommand";
|
|
50
54
|
import {
|
|
51
55
|
GetInsightSelectorsCommandInput,
|
|
52
56
|
GetInsightSelectorsCommandOutput,
|
|
@@ -71,6 +75,14 @@ import {
|
|
|
71
75
|
ListEventDataStoresCommandInput,
|
|
72
76
|
ListEventDataStoresCommandOutput,
|
|
73
77
|
} from "../commands/ListEventDataStoresCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListImportFailuresCommandInput,
|
|
80
|
+
ListImportFailuresCommandOutput,
|
|
81
|
+
} from "../commands/ListImportFailuresCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListImportsCommandInput,
|
|
84
|
+
ListImportsCommandOutput,
|
|
85
|
+
} from "../commands/ListImportsCommand";
|
|
74
86
|
import {
|
|
75
87
|
ListPublicKeysCommandInput,
|
|
76
88
|
ListPublicKeysCommandOutput,
|
|
@@ -107,6 +119,10 @@ import {
|
|
|
107
119
|
RestoreEventDataStoreCommandInput,
|
|
108
120
|
RestoreEventDataStoreCommandOutput,
|
|
109
121
|
} from "../commands/RestoreEventDataStoreCommand";
|
|
122
|
+
import {
|
|
123
|
+
StartImportCommandInput,
|
|
124
|
+
StartImportCommandOutput,
|
|
125
|
+
} from "../commands/StartImportCommand";
|
|
110
126
|
import {
|
|
111
127
|
StartLoggingCommandInput,
|
|
112
128
|
StartLoggingCommandOutput,
|
|
@@ -115,6 +131,10 @@ import {
|
|
|
115
131
|
StartQueryCommandInput,
|
|
116
132
|
StartQueryCommandOutput,
|
|
117
133
|
} from "../commands/StartQueryCommand";
|
|
134
|
+
import {
|
|
135
|
+
StopImportCommandInput,
|
|
136
|
+
StopImportCommandOutput,
|
|
137
|
+
} from "../commands/StopImportCommand";
|
|
118
138
|
import {
|
|
119
139
|
StopLoggingCommandInput,
|
|
120
140
|
StopLoggingCommandOutput,
|
|
@@ -171,6 +191,10 @@ export declare const serializeAws_json1_1GetEventSelectorsCommand: (
|
|
|
171
191
|
input: GetEventSelectorsCommandInput,
|
|
172
192
|
context: __SerdeContext
|
|
173
193
|
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_json1_1GetImportCommand: (
|
|
195
|
+
input: GetImportCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
174
198
|
export declare const serializeAws_json1_1GetInsightSelectorsCommand: (
|
|
175
199
|
input: GetInsightSelectorsCommandInput,
|
|
176
200
|
context: __SerdeContext
|
|
@@ -195,6 +219,14 @@ export declare const serializeAws_json1_1ListEventDataStoresCommand: (
|
|
|
195
219
|
input: ListEventDataStoresCommandInput,
|
|
196
220
|
context: __SerdeContext
|
|
197
221
|
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const serializeAws_json1_1ListImportFailuresCommand: (
|
|
223
|
+
input: ListImportFailuresCommandInput,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<__HttpRequest>;
|
|
226
|
+
export declare const serializeAws_json1_1ListImportsCommand: (
|
|
227
|
+
input: ListImportsCommandInput,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<__HttpRequest>;
|
|
198
230
|
export declare const serializeAws_json1_1ListPublicKeysCommand: (
|
|
199
231
|
input: ListPublicKeysCommandInput,
|
|
200
232
|
context: __SerdeContext
|
|
@@ -231,6 +263,10 @@ export declare const serializeAws_json1_1RestoreEventDataStoreCommand: (
|
|
|
231
263
|
input: RestoreEventDataStoreCommandInput,
|
|
232
264
|
context: __SerdeContext
|
|
233
265
|
) => Promise<__HttpRequest>;
|
|
266
|
+
export declare const serializeAws_json1_1StartImportCommand: (
|
|
267
|
+
input: StartImportCommandInput,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<__HttpRequest>;
|
|
234
270
|
export declare const serializeAws_json1_1StartLoggingCommand: (
|
|
235
271
|
input: StartLoggingCommandInput,
|
|
236
272
|
context: __SerdeContext
|
|
@@ -239,6 +275,10 @@ export declare const serializeAws_json1_1StartQueryCommand: (
|
|
|
239
275
|
input: StartQueryCommandInput,
|
|
240
276
|
context: __SerdeContext
|
|
241
277
|
) => Promise<__HttpRequest>;
|
|
278
|
+
export declare const serializeAws_json1_1StopImportCommand: (
|
|
279
|
+
input: StopImportCommandInput,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<__HttpRequest>;
|
|
242
282
|
export declare const serializeAws_json1_1StopLoggingCommand: (
|
|
243
283
|
input: StopLoggingCommandInput,
|
|
244
284
|
context: __SerdeContext
|
|
@@ -295,6 +335,10 @@ export declare const deserializeAws_json1_1GetEventSelectorsCommand: (
|
|
|
295
335
|
output: __HttpResponse,
|
|
296
336
|
context: __SerdeContext
|
|
297
337
|
) => Promise<GetEventSelectorsCommandOutput>;
|
|
338
|
+
export declare const deserializeAws_json1_1GetImportCommand: (
|
|
339
|
+
output: __HttpResponse,
|
|
340
|
+
context: __SerdeContext
|
|
341
|
+
) => Promise<GetImportCommandOutput>;
|
|
298
342
|
export declare const deserializeAws_json1_1GetInsightSelectorsCommand: (
|
|
299
343
|
output: __HttpResponse,
|
|
300
344
|
context: __SerdeContext
|
|
@@ -319,6 +363,14 @@ export declare const deserializeAws_json1_1ListEventDataStoresCommand: (
|
|
|
319
363
|
output: __HttpResponse,
|
|
320
364
|
context: __SerdeContext
|
|
321
365
|
) => Promise<ListEventDataStoresCommandOutput>;
|
|
366
|
+
export declare const deserializeAws_json1_1ListImportFailuresCommand: (
|
|
367
|
+
output: __HttpResponse,
|
|
368
|
+
context: __SerdeContext
|
|
369
|
+
) => Promise<ListImportFailuresCommandOutput>;
|
|
370
|
+
export declare const deserializeAws_json1_1ListImportsCommand: (
|
|
371
|
+
output: __HttpResponse,
|
|
372
|
+
context: __SerdeContext
|
|
373
|
+
) => Promise<ListImportsCommandOutput>;
|
|
322
374
|
export declare const deserializeAws_json1_1ListPublicKeysCommand: (
|
|
323
375
|
output: __HttpResponse,
|
|
324
376
|
context: __SerdeContext
|
|
@@ -355,6 +407,10 @@ export declare const deserializeAws_json1_1RestoreEventDataStoreCommand: (
|
|
|
355
407
|
output: __HttpResponse,
|
|
356
408
|
context: __SerdeContext
|
|
357
409
|
) => Promise<RestoreEventDataStoreCommandOutput>;
|
|
410
|
+
export declare const deserializeAws_json1_1StartImportCommand: (
|
|
411
|
+
output: __HttpResponse,
|
|
412
|
+
context: __SerdeContext
|
|
413
|
+
) => Promise<StartImportCommandOutput>;
|
|
358
414
|
export declare const deserializeAws_json1_1StartLoggingCommand: (
|
|
359
415
|
output: __HttpResponse,
|
|
360
416
|
context: __SerdeContext
|
|
@@ -363,6 +419,10 @@ export declare const deserializeAws_json1_1StartQueryCommand: (
|
|
|
363
419
|
output: __HttpResponse,
|
|
364
420
|
context: __SerdeContext
|
|
365
421
|
) => Promise<StartQueryCommandOutput>;
|
|
422
|
+
export declare const deserializeAws_json1_1StopImportCommand: (
|
|
423
|
+
output: __HttpResponse,
|
|
424
|
+
context: __SerdeContext
|
|
425
|
+
) => Promise<StopImportCommandOutput>;
|
|
366
426
|
export declare const deserializeAws_json1_1StopLoggingCommand: (
|
|
367
427
|
output: __HttpResponse,
|
|
368
428
|
context: __SerdeContext
|
|
@@ -50,7 +50,9 @@ export declare const getRuntimeConfig: (config: CloudTrailClientConfig) => {
|
|
|
50
50
|
| undefined;
|
|
51
51
|
signer?:
|
|
52
52
|
| import("@aws-sdk/types").RequestSigner
|
|
53
|
-
|
|
|
53
|
+
| ((
|
|
54
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
55
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
54
56
|
| undefined;
|
|
55
57
|
signingEscapePath?: boolean | undefined;
|
|
56
58
|
systemClockOffset?: number | undefined;
|
|
@@ -50,7 +50,9 @@ export declare const getRuntimeConfig: (config: CloudTrailClientConfig) => {
|
|
|
50
50
|
| undefined;
|
|
51
51
|
signer?:
|
|
52
52
|
| import("@aws-sdk/types").RequestSigner
|
|
53
|
-
|
|
|
53
|
+
| ((
|
|
54
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
55
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
54
56
|
| undefined;
|
|
55
57
|
signingEscapePath?: boolean | undefined;
|
|
56
58
|
systemClockOffset?: number | undefined;
|
|
@@ -51,7 +51,9 @@ export declare const getRuntimeConfig: (config: CloudTrailClientConfig) => {
|
|
|
51
51
|
| undefined;
|
|
52
52
|
signer?:
|
|
53
53
|
| import("@aws-sdk/types").RequestSigner
|
|
54
|
-
|
|
|
54
|
+
| ((
|
|
55
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
56
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
55
57
|
| undefined;
|
|
56
58
|
signingEscapePath?: boolean | undefined;
|
|
57
59
|
systemClockOffset?: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudtrail",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudtrail Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.178.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",
|
|
@@ -19,35 +19,35 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.178.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.178.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.178.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.178.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.178.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.178.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.178.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.178.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.178.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.178.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.178.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.178.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.178.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.178.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.178.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.178.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.178.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.178.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.178.0",
|
|
41
|
+
"@aws-sdk/types": "3.178.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.178.0",
|
|
43
43
|
"@aws-sdk/util-base64-browser": "3.170.0",
|
|
44
44
|
"@aws-sdk/util-base64-node": "3.170.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.170.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.170.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.178.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.178.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.178.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.178.0",
|
|
51
51
|
"@aws-sdk/util-utf8-browser": "3.170.0",
|
|
52
52
|
"@aws-sdk/util-utf8-node": "3.170.0",
|
|
53
53
|
"tslib": "^2.3.1"
|