@aws-sdk/client-guardduty 3.110.0 → 3.118.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 +27 -0
- package/README.md +15 -13
- package/dist-cjs/GuardDuty.js +60 -0
- package/dist-cjs/commands/AcceptAdministratorInvitationCommand.js +36 -0
- package/dist-cjs/commands/DisassociateFromAdministratorAccountCommand.js +36 -0
- package/dist-cjs/commands/GetAdministratorAccountCommand.js +36 -0
- package/dist-cjs/commands/GetRemainingFreeTrialDaysCommand.js +36 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +97 -13
- package/dist-cjs/protocols/Aws_restJson1.js +364 -5
- package/dist-es/GuardDuty.js +60 -0
- package/dist-es/commands/AcceptAdministratorInvitationCommand.js +39 -0
- package/dist-es/commands/DisassociateFromAdministratorAccountCommand.js +39 -0
- package/dist-es/commands/GetAdministratorAccountCommand.js +39 -0
- package/dist-es/commands/GetRemainingFreeTrialDaysCommand.js +39 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +64 -8
- package/dist-es/protocols/Aws_restJson1.js +451 -2
- package/dist-types/GuardDuty.d.ts +47 -11
- package/dist-types/GuardDutyClient.d.ts +14 -8
- package/dist-types/commands/AcceptAdministratorInvitationCommand.d.ts +35 -0
- package/dist-types/commands/AcceptInvitationCommand.d.ts +2 -0
- package/dist-types/commands/DisassociateFromAdministratorAccountCommand.d.ts +35 -0
- package/dist-types/commands/DisassociateFromMasterAccountCommand.d.ts +2 -0
- package/dist-types/commands/DisassociateMembersCommand.d.ts +1 -2
- package/dist-types/commands/GetAdministratorAccountCommand.d.ts +36 -0
- package/dist-types/commands/GetMasterAccountCommand.d.ts +2 -0
- package/dist-types/commands/GetRemainingFreeTrialDaysCommand.d.ts +35 -0
- package/dist-types/commands/GetUsageStatisticsCommand.d.ts +3 -3
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +258 -8
- package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
- package/dist-types/ts3.4/GuardDuty.d.ts +20 -0
- package/dist-types/ts3.4/GuardDutyClient.d.ts +6 -2
- package/dist-types/ts3.4/commands/AcceptAdministratorInvitationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateFromAdministratorAccountCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetAdministratorAccountCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetRemainingFreeTrialDaysCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +157 -7
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +4 -4
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient";
|
|
4
|
+
import { GetRemainingFreeTrialDaysRequest, GetRemainingFreeTrialDaysResponse } from "../models/models_0";
|
|
5
|
+
export interface GetRemainingFreeTrialDaysCommandInput extends GetRemainingFreeTrialDaysRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetRemainingFreeTrialDaysCommandOutput extends GetRemainingFreeTrialDaysResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetRemainingFreeTrialDaysCommand extends $Command<GetRemainingFreeTrialDaysCommandInput, GetRemainingFreeTrialDaysCommandOutput, GuardDutyClientResolvedConfig> {
|
|
11
|
+
readonly input: GetRemainingFreeTrialDaysCommandInput;
|
|
12
|
+
constructor(input: GetRemainingFreeTrialDaysCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GuardDutyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRemainingFreeTrialDaysCommandInput, GetRemainingFreeTrialDaysCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from "./AcceptAdministratorInvitationCommand";
|
|
1
2
|
export * from "./AcceptInvitationCommand";
|
|
2
3
|
export * from "./ArchiveFindingsCommand";
|
|
3
4
|
export * from "./CreateDetectorCommand";
|
|
@@ -18,9 +19,11 @@ export * from "./DeleteThreatIntelSetCommand";
|
|
|
18
19
|
export * from "./DescribeOrganizationConfigurationCommand";
|
|
19
20
|
export * from "./DescribePublishingDestinationCommand";
|
|
20
21
|
export * from "./DisableOrganizationAdminAccountCommand";
|
|
22
|
+
export * from "./DisassociateFromAdministratorAccountCommand";
|
|
21
23
|
export * from "./DisassociateFromMasterAccountCommand";
|
|
22
24
|
export * from "./DisassociateMembersCommand";
|
|
23
25
|
export * from "./EnableOrganizationAdminAccountCommand";
|
|
26
|
+
export * from "./GetAdministratorAccountCommand";
|
|
24
27
|
export * from "./GetDetectorCommand";
|
|
25
28
|
export * from "./GetFilterCommand";
|
|
26
29
|
export * from "./GetFindingsCommand";
|
|
@@ -30,6 +33,7 @@ export * from "./GetInvitationsCountCommand";
|
|
|
30
33
|
export * from "./GetMasterAccountCommand";
|
|
31
34
|
export * from "./GetMemberDetectorsCommand";
|
|
32
35
|
export * from "./GetMembersCommand";
|
|
36
|
+
export * from "./GetRemainingFreeTrialDaysCommand";
|
|
33
37
|
export * from "./GetThreatIntelSetCommand";
|
|
34
38
|
export * from "./GetUsageStatisticsCommand";
|
|
35
39
|
export * from "./InviteMembersCommand";
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { GuardDutyServiceException as __BaseException } from "./GuardDutyServiceException";
|
|
3
|
-
export interface
|
|
3
|
+
export interface AcceptAdministratorInvitationRequest {
|
|
4
4
|
|
|
5
5
|
DetectorId: string | undefined;
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
AdministratorId: string | undefined;
|
|
8
8
|
|
|
9
9
|
InvitationId: string | undefined;
|
|
10
10
|
}
|
|
11
|
-
export declare namespace
|
|
11
|
+
export declare namespace AcceptAdministratorInvitationRequest {
|
|
12
12
|
|
|
13
|
-
const filterSensitiveLog: (obj:
|
|
13
|
+
const filterSensitiveLog: (obj: AcceptAdministratorInvitationRequest) => any;
|
|
14
14
|
}
|
|
15
|
-
export interface
|
|
15
|
+
export interface AcceptAdministratorInvitationResponse {
|
|
16
16
|
}
|
|
17
|
-
export declare namespace
|
|
17
|
+
export declare namespace AcceptAdministratorInvitationResponse {
|
|
18
18
|
|
|
19
|
-
const filterSensitiveLog: (obj:
|
|
19
|
+
const filterSensitiveLog: (obj: AcceptAdministratorInvitationResponse) => any;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
export declare class BadRequestException extends __BaseException {
|
|
@@ -40,6 +40,24 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
40
40
|
|
|
41
41
|
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
42
42
|
}
|
|
43
|
+
export interface AcceptInvitationRequest {
|
|
44
|
+
|
|
45
|
+
DetectorId: string | undefined;
|
|
46
|
+
|
|
47
|
+
MasterId: string | undefined;
|
|
48
|
+
|
|
49
|
+
InvitationId: string | undefined;
|
|
50
|
+
}
|
|
51
|
+
export declare namespace AcceptInvitationRequest {
|
|
52
|
+
|
|
53
|
+
const filterSensitiveLog: (obj: AcceptInvitationRequest) => any;
|
|
54
|
+
}
|
|
55
|
+
export interface AcceptInvitationResponse {
|
|
56
|
+
}
|
|
57
|
+
export declare namespace AcceptInvitationResponse {
|
|
58
|
+
|
|
59
|
+
const filterSensitiveLog: (obj: AcceptInvitationResponse) => any;
|
|
60
|
+
}
|
|
43
61
|
|
|
44
62
|
export interface AccessControlList {
|
|
45
63
|
|
|
@@ -78,6 +96,52 @@ export declare namespace AccountDetail {
|
|
|
78
96
|
const filterSensitiveLog: (obj: AccountDetail) => any;
|
|
79
97
|
}
|
|
80
98
|
|
|
99
|
+
export interface DataSourceFreeTrial {
|
|
100
|
+
|
|
101
|
+
FreeTrialDaysRemaining?: number;
|
|
102
|
+
}
|
|
103
|
+
export declare namespace DataSourceFreeTrial {
|
|
104
|
+
|
|
105
|
+
const filterSensitiveLog: (obj: DataSourceFreeTrial) => any;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
export interface KubernetesDataSourceFreeTrial {
|
|
109
|
+
|
|
110
|
+
AuditLogs?: DataSourceFreeTrial;
|
|
111
|
+
}
|
|
112
|
+
export declare namespace KubernetesDataSourceFreeTrial {
|
|
113
|
+
|
|
114
|
+
const filterSensitiveLog: (obj: KubernetesDataSourceFreeTrial) => any;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export interface DataSourcesFreeTrial {
|
|
118
|
+
|
|
119
|
+
CloudTrail?: DataSourceFreeTrial;
|
|
120
|
+
|
|
121
|
+
DnsLogs?: DataSourceFreeTrial;
|
|
122
|
+
|
|
123
|
+
FlowLogs?: DataSourceFreeTrial;
|
|
124
|
+
|
|
125
|
+
S3Logs?: DataSourceFreeTrial;
|
|
126
|
+
|
|
127
|
+
Kubernetes?: KubernetesDataSourceFreeTrial;
|
|
128
|
+
}
|
|
129
|
+
export declare namespace DataSourcesFreeTrial {
|
|
130
|
+
|
|
131
|
+
const filterSensitiveLog: (obj: DataSourcesFreeTrial) => any;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export interface AccountFreeTrialInfo {
|
|
135
|
+
|
|
136
|
+
AccountId?: string;
|
|
137
|
+
|
|
138
|
+
DataSources?: DataSourcesFreeTrial;
|
|
139
|
+
}
|
|
140
|
+
export declare namespace AccountFreeTrialInfo {
|
|
141
|
+
|
|
142
|
+
const filterSensitiveLog: (obj: AccountFreeTrialInfo) => any;
|
|
143
|
+
}
|
|
144
|
+
|
|
81
145
|
export interface BlockPublicAccess {
|
|
82
146
|
|
|
83
147
|
IgnorePublicAcls?: boolean;
|
|
@@ -202,6 +266,8 @@ export interface AwsApiCallAction {
|
|
|
202
266
|
ServiceName?: string;
|
|
203
267
|
|
|
204
268
|
RemoteAccountDetails?: RemoteAccountDetails;
|
|
269
|
+
|
|
270
|
+
AffectedResources?: Record<string, string>;
|
|
205
271
|
}
|
|
206
272
|
export declare namespace AwsApiCallAction {
|
|
207
273
|
|
|
@@ -211,6 +277,10 @@ export declare namespace AwsApiCallAction {
|
|
|
211
277
|
export interface DnsRequestAction {
|
|
212
278
|
|
|
213
279
|
Domain?: string;
|
|
280
|
+
|
|
281
|
+
Protocol?: string;
|
|
282
|
+
|
|
283
|
+
Blocked?: boolean;
|
|
214
284
|
}
|
|
215
285
|
export declare namespace DnsRequestAction {
|
|
216
286
|
|
|
@@ -347,6 +417,21 @@ export declare namespace AdminAccount {
|
|
|
347
417
|
|
|
348
418
|
const filterSensitiveLog: (obj: AdminAccount) => any;
|
|
349
419
|
}
|
|
420
|
+
|
|
421
|
+
export interface Administrator {
|
|
422
|
+
|
|
423
|
+
AccountId?: string;
|
|
424
|
+
|
|
425
|
+
InvitationId?: string;
|
|
426
|
+
|
|
427
|
+
RelationshipStatus?: string;
|
|
428
|
+
|
|
429
|
+
InvitedAt?: string;
|
|
430
|
+
}
|
|
431
|
+
export declare namespace Administrator {
|
|
432
|
+
|
|
433
|
+
const filterSensitiveLog: (obj: Administrator) => any;
|
|
434
|
+
}
|
|
350
435
|
export interface ArchiveFindingsRequest {
|
|
351
436
|
|
|
352
437
|
DetectorId: string | undefined;
|
|
@@ -1064,6 +1149,20 @@ export declare namespace DisableOrganizationAdminAccountResponse {
|
|
|
1064
1149
|
|
|
1065
1150
|
const filterSensitiveLog: (obj: DisableOrganizationAdminAccountResponse) => any;
|
|
1066
1151
|
}
|
|
1152
|
+
export interface DisassociateFromAdministratorAccountRequest {
|
|
1153
|
+
|
|
1154
|
+
DetectorId: string | undefined;
|
|
1155
|
+
}
|
|
1156
|
+
export declare namespace DisassociateFromAdministratorAccountRequest {
|
|
1157
|
+
|
|
1158
|
+
const filterSensitiveLog: (obj: DisassociateFromAdministratorAccountRequest) => any;
|
|
1159
|
+
}
|
|
1160
|
+
export interface DisassociateFromAdministratorAccountResponse {
|
|
1161
|
+
}
|
|
1162
|
+
export declare namespace DisassociateFromAdministratorAccountResponse {
|
|
1163
|
+
|
|
1164
|
+
const filterSensitiveLog: (obj: DisassociateFromAdministratorAccountResponse) => any;
|
|
1165
|
+
}
|
|
1067
1166
|
export interface DisassociateFromMasterAccountRequest {
|
|
1068
1167
|
|
|
1069
1168
|
DetectorId: string | undefined;
|
|
@@ -1407,6 +1506,17 @@ export declare namespace Resource {
|
|
|
1407
1506
|
const filterSensitiveLog: (obj: Resource) => any;
|
|
1408
1507
|
}
|
|
1409
1508
|
|
|
1509
|
+
export interface ServiceAdditionalInfo {
|
|
1510
|
+
|
|
1511
|
+
Value?: string;
|
|
1512
|
+
|
|
1513
|
+
Type?: string;
|
|
1514
|
+
}
|
|
1515
|
+
export declare namespace ServiceAdditionalInfo {
|
|
1516
|
+
|
|
1517
|
+
const filterSensitiveLog: (obj: ServiceAdditionalInfo) => any;
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1410
1520
|
export interface Service {
|
|
1411
1521
|
|
|
1412
1522
|
Action?: Action;
|
|
@@ -1428,6 +1538,8 @@ export interface Service {
|
|
|
1428
1538
|
ServiceName?: string;
|
|
1429
1539
|
|
|
1430
1540
|
UserFeedback?: string;
|
|
1541
|
+
|
|
1542
|
+
AdditionalInfo?: ServiceAdditionalInfo;
|
|
1431
1543
|
}
|
|
1432
1544
|
export declare namespace Service {
|
|
1433
1545
|
|
|
@@ -1482,6 +1594,22 @@ export declare namespace FindingStatistics {
|
|
|
1482
1594
|
export declare enum FindingStatisticType {
|
|
1483
1595
|
COUNT_BY_SEVERITY = "COUNT_BY_SEVERITY"
|
|
1484
1596
|
}
|
|
1597
|
+
export interface GetAdministratorAccountRequest {
|
|
1598
|
+
|
|
1599
|
+
DetectorId: string | undefined;
|
|
1600
|
+
}
|
|
1601
|
+
export declare namespace GetAdministratorAccountRequest {
|
|
1602
|
+
|
|
1603
|
+
const filterSensitiveLog: (obj: GetAdministratorAccountRequest) => any;
|
|
1604
|
+
}
|
|
1605
|
+
export interface GetAdministratorAccountResponse {
|
|
1606
|
+
|
|
1607
|
+
Administrator: Administrator | undefined;
|
|
1608
|
+
}
|
|
1609
|
+
export declare namespace GetAdministratorAccountResponse {
|
|
1610
|
+
|
|
1611
|
+
const filterSensitiveLog: (obj: GetAdministratorAccountResponse) => any;
|
|
1612
|
+
}
|
|
1485
1613
|
export interface GetDetectorRequest {
|
|
1486
1614
|
|
|
1487
1615
|
DetectorId: string | undefined;
|
|
@@ -1730,6 +1858,8 @@ export interface Member {
|
|
|
1730
1858
|
InvitedAt?: string;
|
|
1731
1859
|
|
|
1732
1860
|
UpdatedAt: string | undefined;
|
|
1861
|
+
|
|
1862
|
+
AdministratorId?: string;
|
|
1733
1863
|
}
|
|
1734
1864
|
export declare namespace Member {
|
|
1735
1865
|
|
|
@@ -1745,6 +1875,26 @@ export declare namespace GetMembersResponse {
|
|
|
1745
1875
|
|
|
1746
1876
|
const filterSensitiveLog: (obj: GetMembersResponse) => any;
|
|
1747
1877
|
}
|
|
1878
|
+
export interface GetRemainingFreeTrialDaysRequest {
|
|
1879
|
+
|
|
1880
|
+
DetectorId: string | undefined;
|
|
1881
|
+
|
|
1882
|
+
AccountIds?: string[];
|
|
1883
|
+
}
|
|
1884
|
+
export declare namespace GetRemainingFreeTrialDaysRequest {
|
|
1885
|
+
|
|
1886
|
+
const filterSensitiveLog: (obj: GetRemainingFreeTrialDaysRequest) => any;
|
|
1887
|
+
}
|
|
1888
|
+
export interface GetRemainingFreeTrialDaysResponse {
|
|
1889
|
+
|
|
1890
|
+
Accounts?: AccountFreeTrialInfo[];
|
|
1891
|
+
|
|
1892
|
+
UnprocessedAccounts?: UnprocessedAccount[];
|
|
1893
|
+
}
|
|
1894
|
+
export declare namespace GetRemainingFreeTrialDaysResponse {
|
|
1895
|
+
|
|
1896
|
+
const filterSensitiveLog: (obj: GetRemainingFreeTrialDaysResponse) => any;
|
|
1897
|
+
}
|
|
1748
1898
|
export interface GetThreatIntelSetRequest {
|
|
1749
1899
|
|
|
1750
1900
|
DetectorId: string | undefined;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { AcceptAdministratorInvitationCommandInput, AcceptAdministratorInvitationCommandOutput } from "../commands/AcceptAdministratorInvitationCommand";
|
|
3
4
|
import { AcceptInvitationCommandInput, AcceptInvitationCommandOutput } from "../commands/AcceptInvitationCommand";
|
|
4
5
|
import { ArchiveFindingsCommandInput, ArchiveFindingsCommandOutput } from "../commands/ArchiveFindingsCommand";
|
|
5
6
|
import { CreateDetectorCommandInput, CreateDetectorCommandOutput } from "../commands/CreateDetectorCommand";
|
|
@@ -20,9 +21,11 @@ import { DeleteThreatIntelSetCommandInput, DeleteThreatIntelSetCommandOutput } f
|
|
|
20
21
|
import { DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput } from "../commands/DescribeOrganizationConfigurationCommand";
|
|
21
22
|
import { DescribePublishingDestinationCommandInput, DescribePublishingDestinationCommandOutput } from "../commands/DescribePublishingDestinationCommand";
|
|
22
23
|
import { DisableOrganizationAdminAccountCommandInput, DisableOrganizationAdminAccountCommandOutput } from "../commands/DisableOrganizationAdminAccountCommand";
|
|
24
|
+
import { DisassociateFromAdministratorAccountCommandInput, DisassociateFromAdministratorAccountCommandOutput } from "../commands/DisassociateFromAdministratorAccountCommand";
|
|
23
25
|
import { DisassociateFromMasterAccountCommandInput, DisassociateFromMasterAccountCommandOutput } from "../commands/DisassociateFromMasterAccountCommand";
|
|
24
26
|
import { DisassociateMembersCommandInput, DisassociateMembersCommandOutput } from "../commands/DisassociateMembersCommand";
|
|
25
27
|
import { EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput } from "../commands/EnableOrganizationAdminAccountCommand";
|
|
28
|
+
import { GetAdministratorAccountCommandInput, GetAdministratorAccountCommandOutput } from "../commands/GetAdministratorAccountCommand";
|
|
26
29
|
import { GetDetectorCommandInput, GetDetectorCommandOutput } from "../commands/GetDetectorCommand";
|
|
27
30
|
import { GetFilterCommandInput, GetFilterCommandOutput } from "../commands/GetFilterCommand";
|
|
28
31
|
import { GetFindingsCommandInput, GetFindingsCommandOutput } from "../commands/GetFindingsCommand";
|
|
@@ -32,6 +35,7 @@ import { GetIPSetCommandInput, GetIPSetCommandOutput } from "../commands/GetIPSe
|
|
|
32
35
|
import { GetMasterAccountCommandInput, GetMasterAccountCommandOutput } from "../commands/GetMasterAccountCommand";
|
|
33
36
|
import { GetMemberDetectorsCommandInput, GetMemberDetectorsCommandOutput } from "../commands/GetMemberDetectorsCommand";
|
|
34
37
|
import { GetMembersCommandInput, GetMembersCommandOutput } from "../commands/GetMembersCommand";
|
|
38
|
+
import { GetRemainingFreeTrialDaysCommandInput, GetRemainingFreeTrialDaysCommandOutput } from "../commands/GetRemainingFreeTrialDaysCommand";
|
|
35
39
|
import { GetThreatIntelSetCommandInput, GetThreatIntelSetCommandOutput } from "../commands/GetThreatIntelSetCommand";
|
|
36
40
|
import { GetUsageStatisticsCommandInput, GetUsageStatisticsCommandOutput } from "../commands/GetUsageStatisticsCommand";
|
|
37
41
|
import { InviteMembersCommandInput, InviteMembersCommandOutput } from "../commands/InviteMembersCommand";
|
|
@@ -58,6 +62,7 @@ import { UpdateMemberDetectorsCommandInput, UpdateMemberDetectorsCommandOutput }
|
|
|
58
62
|
import { UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput } from "../commands/UpdateOrganizationConfigurationCommand";
|
|
59
63
|
import { UpdatePublishingDestinationCommandInput, UpdatePublishingDestinationCommandOutput } from "../commands/UpdatePublishingDestinationCommand";
|
|
60
64
|
import { UpdateThreatIntelSetCommandInput, UpdateThreatIntelSetCommandOutput } from "../commands/UpdateThreatIntelSetCommand";
|
|
65
|
+
export declare const serializeAws_restJson1AcceptAdministratorInvitationCommand: (input: AcceptAdministratorInvitationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
66
|
export declare const serializeAws_restJson1AcceptInvitationCommand: (input: AcceptInvitationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
67
|
export declare const serializeAws_restJson1ArchiveFindingsCommand: (input: ArchiveFindingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
68
|
export declare const serializeAws_restJson1CreateDetectorCommand: (input: CreateDetectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -78,9 +83,11 @@ export declare const serializeAws_restJson1DeleteThreatIntelSetCommand: (input:
|
|
|
78
83
|
export declare const serializeAws_restJson1DescribeOrganizationConfigurationCommand: (input: DescribeOrganizationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
84
|
export declare const serializeAws_restJson1DescribePublishingDestinationCommand: (input: DescribePublishingDestinationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
85
|
export declare const serializeAws_restJson1DisableOrganizationAdminAccountCommand: (input: DisableOrganizationAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const serializeAws_restJson1DisassociateFromAdministratorAccountCommand: (input: DisassociateFromAdministratorAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
87
|
export declare const serializeAws_restJson1DisassociateFromMasterAccountCommand: (input: DisassociateFromMasterAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
88
|
export declare const serializeAws_restJson1DisassociateMembersCommand: (input: DisassociateMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
89
|
export declare const serializeAws_restJson1EnableOrganizationAdminAccountCommand: (input: EnableOrganizationAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const serializeAws_restJson1GetAdministratorAccountCommand: (input: GetAdministratorAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
91
|
export declare const serializeAws_restJson1GetDetectorCommand: (input: GetDetectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
92
|
export declare const serializeAws_restJson1GetFilterCommand: (input: GetFilterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
93
|
export declare const serializeAws_restJson1GetFindingsCommand: (input: GetFindingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -90,6 +97,7 @@ export declare const serializeAws_restJson1GetIPSetCommand: (input: GetIPSetComm
|
|
|
90
97
|
export declare const serializeAws_restJson1GetMasterAccountCommand: (input: GetMasterAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
98
|
export declare const serializeAws_restJson1GetMemberDetectorsCommand: (input: GetMemberDetectorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
99
|
export declare const serializeAws_restJson1GetMembersCommand: (input: GetMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
|
+
export declare const serializeAws_restJson1GetRemainingFreeTrialDaysCommand: (input: GetRemainingFreeTrialDaysCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
101
|
export declare const serializeAws_restJson1GetThreatIntelSetCommand: (input: GetThreatIntelSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
102
|
export declare const serializeAws_restJson1GetUsageStatisticsCommand: (input: GetUsageStatisticsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
95
103
|
export declare const serializeAws_restJson1InviteMembersCommand: (input: InviteMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -116,6 +124,7 @@ export declare const serializeAws_restJson1UpdateMemberDetectorsCommand: (input:
|
|
|
116
124
|
export declare const serializeAws_restJson1UpdateOrganizationConfigurationCommand: (input: UpdateOrganizationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
125
|
export declare const serializeAws_restJson1UpdatePublishingDestinationCommand: (input: UpdatePublishingDestinationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
126
|
export declare const serializeAws_restJson1UpdateThreatIntelSetCommand: (input: UpdateThreatIntelSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
127
|
+
export declare const deserializeAws_restJson1AcceptAdministratorInvitationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptAdministratorInvitationCommandOutput>;
|
|
119
128
|
export declare const deserializeAws_restJson1AcceptInvitationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptInvitationCommandOutput>;
|
|
120
129
|
export declare const deserializeAws_restJson1ArchiveFindingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ArchiveFindingsCommandOutput>;
|
|
121
130
|
export declare const deserializeAws_restJson1CreateDetectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDetectorCommandOutput>;
|
|
@@ -136,9 +145,11 @@ export declare const deserializeAws_restJson1DeleteThreatIntelSetCommand: (outpu
|
|
|
136
145
|
export declare const deserializeAws_restJson1DescribeOrganizationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeOrganizationConfigurationCommandOutput>;
|
|
137
146
|
export declare const deserializeAws_restJson1DescribePublishingDestinationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePublishingDestinationCommandOutput>;
|
|
138
147
|
export declare const deserializeAws_restJson1DisableOrganizationAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableOrganizationAdminAccountCommandOutput>;
|
|
148
|
+
export declare const deserializeAws_restJson1DisassociateFromAdministratorAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateFromAdministratorAccountCommandOutput>;
|
|
139
149
|
export declare const deserializeAws_restJson1DisassociateFromMasterAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateFromMasterAccountCommandOutput>;
|
|
140
150
|
export declare const deserializeAws_restJson1DisassociateMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateMembersCommandOutput>;
|
|
141
151
|
export declare const deserializeAws_restJson1EnableOrganizationAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableOrganizationAdminAccountCommandOutput>;
|
|
152
|
+
export declare const deserializeAws_restJson1GetAdministratorAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAdministratorAccountCommandOutput>;
|
|
142
153
|
export declare const deserializeAws_restJson1GetDetectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDetectorCommandOutput>;
|
|
143
154
|
export declare const deserializeAws_restJson1GetFilterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFilterCommandOutput>;
|
|
144
155
|
export declare const deserializeAws_restJson1GetFindingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFindingsCommandOutput>;
|
|
@@ -148,6 +159,7 @@ export declare const deserializeAws_restJson1GetIPSetCommand: (output: __HttpRes
|
|
|
148
159
|
export declare const deserializeAws_restJson1GetMasterAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMasterAccountCommandOutput>;
|
|
149
160
|
export declare const deserializeAws_restJson1GetMemberDetectorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMemberDetectorsCommandOutput>;
|
|
150
161
|
export declare const deserializeAws_restJson1GetMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMembersCommandOutput>;
|
|
162
|
+
export declare const deserializeAws_restJson1GetRemainingFreeTrialDaysCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRemainingFreeTrialDaysCommandOutput>;
|
|
151
163
|
export declare const deserializeAws_restJson1GetThreatIntelSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetThreatIntelSetCommandOutput>;
|
|
152
164
|
export declare const deserializeAws_restJson1GetUsageStatisticsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUsageStatisticsCommandOutput>;
|
|
153
165
|
export declare const deserializeAws_restJson1InviteMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<InviteMembersCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-guardduty",
|
|
3
3
|
"description": "AWS SDK for JavaScript Guardduty Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.118.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.
|
|
21
|
+
"@aws-sdk/client-sts": "3.118.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.110.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.118.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.110.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.110.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.110.0",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@aws-sdk/util-defaults-mode-browser": "3.110.0",
|
|
47
47
|
"@aws-sdk/util-defaults-mode-node": "3.110.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.110.0",
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.118.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
52
|
"tslib": "^2.3.1",
|