@aws-sdk/client-guardduty 3.105.0 → 3.111.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.
Files changed (42) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/README.md +15 -13
  3. package/dist-cjs/GuardDuty.js +60 -0
  4. package/dist-cjs/commands/AcceptAdministratorInvitationCommand.js +36 -0
  5. package/dist-cjs/commands/DisassociateFromAdministratorAccountCommand.js +36 -0
  6. package/dist-cjs/commands/GetAdministratorAccountCommand.js +36 -0
  7. package/dist-cjs/commands/GetRemainingFreeTrialDaysCommand.js +36 -0
  8. package/dist-cjs/commands/index.js +4 -0
  9. package/dist-cjs/models/models_0.js +97 -13
  10. package/dist-cjs/protocols/Aws_restJson1.js +364 -5
  11. package/dist-es/GuardDuty.js +60 -0
  12. package/dist-es/commands/AcceptAdministratorInvitationCommand.js +39 -0
  13. package/dist-es/commands/DisassociateFromAdministratorAccountCommand.js +39 -0
  14. package/dist-es/commands/GetAdministratorAccountCommand.js +39 -0
  15. package/dist-es/commands/GetRemainingFreeTrialDaysCommand.js +39 -0
  16. package/dist-es/commands/index.js +4 -0
  17. package/dist-es/models/models_0.js +64 -8
  18. package/dist-es/protocols/Aws_restJson1.js +451 -2
  19. package/dist-types/GuardDuty.d.ts +47 -11
  20. package/dist-types/GuardDutyClient.d.ts +14 -8
  21. package/dist-types/commands/AcceptAdministratorInvitationCommand.d.ts +35 -0
  22. package/dist-types/commands/AcceptInvitationCommand.d.ts +2 -0
  23. package/dist-types/commands/DisassociateFromAdministratorAccountCommand.d.ts +35 -0
  24. package/dist-types/commands/DisassociateFromMasterAccountCommand.d.ts +2 -0
  25. package/dist-types/commands/DisassociateMembersCommand.d.ts +1 -2
  26. package/dist-types/commands/GetAdministratorAccountCommand.d.ts +36 -0
  27. package/dist-types/commands/GetMasterAccountCommand.d.ts +2 -0
  28. package/dist-types/commands/GetRemainingFreeTrialDaysCommand.d.ts +35 -0
  29. package/dist-types/commands/GetUsageStatisticsCommand.d.ts +3 -3
  30. package/dist-types/commands/index.d.ts +4 -0
  31. package/dist-types/models/models_0.d.ts +258 -8
  32. package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
  33. package/dist-types/ts3.4/GuardDuty.d.ts +20 -0
  34. package/dist-types/ts3.4/GuardDutyClient.d.ts +6 -2
  35. package/dist-types/ts3.4/commands/AcceptAdministratorInvitationCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/DisassociateFromAdministratorAccountCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/GetAdministratorAccountCommand.d.ts +17 -0
  38. package/dist-types/ts3.4/commands/GetRemainingFreeTrialDaysCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  40. package/dist-types/ts3.4/models/models_0.d.ts +157 -7
  41. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  42. package/package.json +29 -29
@@ -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 AcceptInvitationRequest {
3
+ export interface AcceptAdministratorInvitationRequest {
4
4
 
5
5
  DetectorId: string | undefined;
6
6
 
7
- MasterId: string | undefined;
7
+ AdministratorId: string | undefined;
8
8
 
9
9
  InvitationId: string | undefined;
10
10
  }
11
- export declare namespace AcceptInvitationRequest {
11
+ export declare namespace AcceptAdministratorInvitationRequest {
12
12
 
13
- const filterSensitiveLog: (obj: AcceptInvitationRequest) => any;
13
+ const filterSensitiveLog: (obj: AcceptAdministratorInvitationRequest) => any;
14
14
  }
15
- export interface AcceptInvitationResponse {
15
+ export interface AcceptAdministratorInvitationResponse {
16
16
  }
17
- export declare namespace AcceptInvitationResponse {
17
+ export declare namespace AcceptAdministratorInvitationResponse {
18
18
 
19
- const filterSensitiveLog: (obj: AcceptInvitationResponse) => any;
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.105.0",
4
+ "version": "3.111.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,37 +18,37 @@
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.105.0",
22
- "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.105.0",
24
- "@aws-sdk/fetch-http-handler": "3.78.0",
25
- "@aws-sdk/hash-node": "3.78.0",
26
- "@aws-sdk/invalid-dependency": "3.78.0",
27
- "@aws-sdk/middleware-content-length": "3.78.0",
28
- "@aws-sdk/middleware-host-header": "3.78.0",
29
- "@aws-sdk/middleware-logger": "3.78.0",
30
- "@aws-sdk/middleware-recursion-detection": "3.105.0",
31
- "@aws-sdk/middleware-retry": "3.80.0",
32
- "@aws-sdk/middleware-serde": "3.78.0",
33
- "@aws-sdk/middleware-signing": "3.78.0",
34
- "@aws-sdk/middleware-stack": "3.78.0",
35
- "@aws-sdk/middleware-user-agent": "3.78.0",
36
- "@aws-sdk/node-config-provider": "3.80.0",
37
- "@aws-sdk/node-http-handler": "3.94.0",
38
- "@aws-sdk/protocol-http": "3.78.0",
39
- "@aws-sdk/smithy-client": "3.99.0",
40
- "@aws-sdk/types": "3.78.0",
41
- "@aws-sdk/url-parser": "3.78.0",
42
- "@aws-sdk/util-base64-browser": "3.58.0",
21
+ "@aws-sdk/client-sts": "3.110.0",
22
+ "@aws-sdk/config-resolver": "3.110.0",
23
+ "@aws-sdk/credential-provider-node": "3.110.0",
24
+ "@aws-sdk/fetch-http-handler": "3.110.0",
25
+ "@aws-sdk/hash-node": "3.110.0",
26
+ "@aws-sdk/invalid-dependency": "3.110.0",
27
+ "@aws-sdk/middleware-content-length": "3.110.0",
28
+ "@aws-sdk/middleware-host-header": "3.110.0",
29
+ "@aws-sdk/middleware-logger": "3.110.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.110.0",
31
+ "@aws-sdk/middleware-retry": "3.110.0",
32
+ "@aws-sdk/middleware-serde": "3.110.0",
33
+ "@aws-sdk/middleware-signing": "3.110.0",
34
+ "@aws-sdk/middleware-stack": "3.110.0",
35
+ "@aws-sdk/middleware-user-agent": "3.110.0",
36
+ "@aws-sdk/node-config-provider": "3.110.0",
37
+ "@aws-sdk/node-http-handler": "3.110.0",
38
+ "@aws-sdk/protocol-http": "3.110.0",
39
+ "@aws-sdk/smithy-client": "3.110.0",
40
+ "@aws-sdk/types": "3.110.0",
41
+ "@aws-sdk/url-parser": "3.110.0",
42
+ "@aws-sdk/util-base64-browser": "3.109.0",
43
43
  "@aws-sdk/util-base64-node": "3.55.0",
44
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
45
45
  "@aws-sdk/util-body-length-node": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-browser": "3.99.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.99.0",
48
- "@aws-sdk/util-user-agent-browser": "3.78.0",
49
- "@aws-sdk/util-user-agent-node": "3.80.0",
50
- "@aws-sdk/util-utf8-browser": "3.55.0",
51
- "@aws-sdk/util-utf8-node": "3.55.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.110.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.110.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.110.0",
49
+ "@aws-sdk/util-user-agent-node": "3.110.0",
50
+ "@aws-sdk/util-utf8-browser": "3.109.0",
51
+ "@aws-sdk/util-utf8-node": "3.109.0",
52
52
  "tslib": "^2.3.1",
53
53
  "uuid": "^8.3.2"
54
54
  },