@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
|
@@ -1,6 +1,6 @@
|
|
|
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
|
* <p>The unique ID of the detector of the GuardDuty member account.</p>
|
|
6
6
|
*/
|
|
@@ -8,25 +8,25 @@ export interface AcceptInvitationRequest {
|
|
|
8
8
|
/**
|
|
9
9
|
* <p>The account ID of the GuardDuty administrator account whose invitation you're accepting.</p>
|
|
10
10
|
*/
|
|
11
|
-
|
|
11
|
+
AdministratorId: string | undefined;
|
|
12
12
|
/**
|
|
13
13
|
* <p>The value that is used to validate the administrator account to the member account.</p>
|
|
14
14
|
*/
|
|
15
15
|
InvitationId: string | undefined;
|
|
16
16
|
}
|
|
17
|
-
export declare namespace
|
|
17
|
+
export declare namespace AcceptAdministratorInvitationRequest {
|
|
18
18
|
/**
|
|
19
19
|
* @internal
|
|
20
20
|
*/
|
|
21
|
-
const filterSensitiveLog: (obj:
|
|
21
|
+
const filterSensitiveLog: (obj: AcceptAdministratorInvitationRequest) => any;
|
|
22
22
|
}
|
|
23
|
-
export interface
|
|
23
|
+
export interface AcceptAdministratorInvitationResponse {
|
|
24
24
|
}
|
|
25
|
-
export declare namespace
|
|
25
|
+
export declare namespace AcceptAdministratorInvitationResponse {
|
|
26
26
|
/**
|
|
27
27
|
* @internal
|
|
28
28
|
*/
|
|
29
|
-
const filterSensitiveLog: (obj:
|
|
29
|
+
const filterSensitiveLog: (obj: AcceptAdministratorInvitationResponse) => any;
|
|
30
30
|
}
|
|
31
31
|
/**
|
|
32
32
|
* <p>A bad request exception object.</p>
|
|
@@ -66,6 +66,34 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
66
66
|
*/
|
|
67
67
|
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
68
68
|
}
|
|
69
|
+
export interface AcceptInvitationRequest {
|
|
70
|
+
/**
|
|
71
|
+
* <p>The unique ID of the detector of the GuardDuty member account.</p>
|
|
72
|
+
*/
|
|
73
|
+
DetectorId: string | undefined;
|
|
74
|
+
/**
|
|
75
|
+
* <p>The account ID of the GuardDuty administrator account whose invitation you're accepting.</p>
|
|
76
|
+
*/
|
|
77
|
+
MasterId: string | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* <p>The value that is used to validate the administrator account to the member account.</p>
|
|
80
|
+
*/
|
|
81
|
+
InvitationId: string | undefined;
|
|
82
|
+
}
|
|
83
|
+
export declare namespace AcceptInvitationRequest {
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
87
|
+
const filterSensitiveLog: (obj: AcceptInvitationRequest) => any;
|
|
88
|
+
}
|
|
89
|
+
export interface AcceptInvitationResponse {
|
|
90
|
+
}
|
|
91
|
+
export declare namespace AcceptInvitationResponse {
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
95
|
+
const filterSensitiveLog: (obj: AcceptInvitationResponse) => any;
|
|
96
|
+
}
|
|
69
97
|
/**
|
|
70
98
|
* <p>Contains information on the current access control policies for the bucket.</p>
|
|
71
99
|
*/
|
|
@@ -133,6 +161,86 @@ export declare namespace AccountDetail {
|
|
|
133
161
|
*/
|
|
134
162
|
const filterSensitiveLog: (obj: AccountDetail) => any;
|
|
135
163
|
}
|
|
164
|
+
/**
|
|
165
|
+
* <p>Contains information about which data sources are enabled for the GuardDuty member account.</p>
|
|
166
|
+
*/
|
|
167
|
+
export interface DataSourceFreeTrial {
|
|
168
|
+
/**
|
|
169
|
+
* <p>A value that specifies the number of days left to use each enabled data source.</p>
|
|
170
|
+
*/
|
|
171
|
+
FreeTrialDaysRemaining?: number;
|
|
172
|
+
}
|
|
173
|
+
export declare namespace DataSourceFreeTrial {
|
|
174
|
+
/**
|
|
175
|
+
* @internal
|
|
176
|
+
*/
|
|
177
|
+
const filterSensitiveLog: (obj: DataSourceFreeTrial) => any;
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* <p>Provides details about the Kubernetes resources when it is enabled as a data source.</p>
|
|
181
|
+
*/
|
|
182
|
+
export interface KubernetesDataSourceFreeTrial {
|
|
183
|
+
/**
|
|
184
|
+
* <p>Describes whether Kubernetes audit logs are enabled as a data source.</p>
|
|
185
|
+
*/
|
|
186
|
+
AuditLogs?: DataSourceFreeTrial;
|
|
187
|
+
}
|
|
188
|
+
export declare namespace KubernetesDataSourceFreeTrial {
|
|
189
|
+
/**
|
|
190
|
+
* @internal
|
|
191
|
+
*/
|
|
192
|
+
const filterSensitiveLog: (obj: KubernetesDataSourceFreeTrial) => any;
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* <p>Contains information about which data sources are enabled for the GuardDuty member account.</p>
|
|
196
|
+
*/
|
|
197
|
+
export interface DataSourcesFreeTrial {
|
|
198
|
+
/**
|
|
199
|
+
* <p>Describes whether any AWS CloudTrail management event logs are enabled as data sources.</p>
|
|
200
|
+
*/
|
|
201
|
+
CloudTrail?: DataSourceFreeTrial;
|
|
202
|
+
/**
|
|
203
|
+
* <p>Describes whether any DNS logs are enabled as data sources.</p>
|
|
204
|
+
*/
|
|
205
|
+
DnsLogs?: DataSourceFreeTrial;
|
|
206
|
+
/**
|
|
207
|
+
* <p>Describes whether any VPC Flow logs are enabled as data sources.</p>
|
|
208
|
+
*/
|
|
209
|
+
FlowLogs?: DataSourceFreeTrial;
|
|
210
|
+
/**
|
|
211
|
+
* <p>Describes whether any S3 data event logs are enabled as data sources.</p>
|
|
212
|
+
*/
|
|
213
|
+
S3Logs?: DataSourceFreeTrial;
|
|
214
|
+
/**
|
|
215
|
+
* <p>Describes whether any Kubernetes logs are enabled as data sources.</p>
|
|
216
|
+
*/
|
|
217
|
+
Kubernetes?: KubernetesDataSourceFreeTrial;
|
|
218
|
+
}
|
|
219
|
+
export declare namespace DataSourcesFreeTrial {
|
|
220
|
+
/**
|
|
221
|
+
* @internal
|
|
222
|
+
*/
|
|
223
|
+
const filterSensitiveLog: (obj: DataSourcesFreeTrial) => any;
|
|
224
|
+
}
|
|
225
|
+
/**
|
|
226
|
+
* <p>Provides details of the GuardDuty member account that uses a free trial service.</p>
|
|
227
|
+
*/
|
|
228
|
+
export interface AccountFreeTrialInfo {
|
|
229
|
+
/**
|
|
230
|
+
* <p>The account identifier of the GuardDuty member account.</p>
|
|
231
|
+
*/
|
|
232
|
+
AccountId?: string;
|
|
233
|
+
/**
|
|
234
|
+
* <p>Describes the data source enabled for the GuardDuty member account.</p>
|
|
235
|
+
*/
|
|
236
|
+
DataSources?: DataSourcesFreeTrial;
|
|
237
|
+
}
|
|
238
|
+
export declare namespace AccountFreeTrialInfo {
|
|
239
|
+
/**
|
|
240
|
+
* @internal
|
|
241
|
+
*/
|
|
242
|
+
const filterSensitiveLog: (obj: AccountFreeTrialInfo) => any;
|
|
243
|
+
}
|
|
136
244
|
/**
|
|
137
245
|
* <p>Contains information on how the bucker owner's S3 Block Public Access settings are being
|
|
138
246
|
* applied to the S3 bucket. See <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html">S3 Block Public
|
|
@@ -201,7 +309,7 @@ export interface RemoteAccountDetails {
|
|
|
201
309
|
*/
|
|
202
310
|
AccountId?: string;
|
|
203
311
|
/**
|
|
204
|
-
* <p>Details on whether the Amazon Web Services account of the remote API caller is related to your GuardDuty environment.
|
|
312
|
+
* <p>Details on whether the Amazon Web Services account of the remote API caller is related to your GuardDuty environment. If this value is <code>True</code> the API caller is affiliated to your account in some way. If it is <code>False</code> the API caller is from outside your environment.</p>
|
|
205
313
|
*/
|
|
206
314
|
Affiliated?: boolean;
|
|
207
315
|
}
|
|
@@ -359,6 +467,10 @@ export interface AwsApiCallAction {
|
|
|
359
467
|
* <p>The details of the Amazon Web Services account that made the API call. This field appears if the call was made from outside your account.</p>
|
|
360
468
|
*/
|
|
361
469
|
RemoteAccountDetails?: RemoteAccountDetails;
|
|
470
|
+
/**
|
|
471
|
+
* <p>The details of the Amazon Web Services account that made the API call. This field identifies the resources that were affected by this API call.</p>
|
|
472
|
+
*/
|
|
473
|
+
AffectedResources?: Record<string, string>;
|
|
362
474
|
}
|
|
363
475
|
export declare namespace AwsApiCallAction {
|
|
364
476
|
/**
|
|
@@ -374,6 +486,14 @@ export interface DnsRequestAction {
|
|
|
374
486
|
* <p>The domain information for the API request.</p>
|
|
375
487
|
*/
|
|
376
488
|
Domain?: string;
|
|
489
|
+
/**
|
|
490
|
+
* <p>The network connection protocol observed in the activity that prompted GuardDuty to generate the finding.</p>
|
|
491
|
+
*/
|
|
492
|
+
Protocol?: string;
|
|
493
|
+
/**
|
|
494
|
+
* <p>Indicates whether the targeted port is blocked.</p>
|
|
495
|
+
*/
|
|
496
|
+
Blocked?: boolean;
|
|
377
497
|
}
|
|
378
498
|
export declare namespace DnsRequestAction {
|
|
379
499
|
/**
|
|
@@ -613,6 +733,33 @@ export declare namespace AdminAccount {
|
|
|
613
733
|
*/
|
|
614
734
|
const filterSensitiveLog: (obj: AdminAccount) => any;
|
|
615
735
|
}
|
|
736
|
+
/**
|
|
737
|
+
* <p>Contains information about the administrator account and invitation.</p>
|
|
738
|
+
*/
|
|
739
|
+
export interface Administrator {
|
|
740
|
+
/**
|
|
741
|
+
* <p>The ID of the account used as the administrator account.</p>
|
|
742
|
+
*/
|
|
743
|
+
AccountId?: string;
|
|
744
|
+
/**
|
|
745
|
+
* <p>The value that is used to validate the administrator account to the member account.</p>
|
|
746
|
+
*/
|
|
747
|
+
InvitationId?: string;
|
|
748
|
+
/**
|
|
749
|
+
* <p>The status of the relationship between the administrator and member accounts.</p>
|
|
750
|
+
*/
|
|
751
|
+
RelationshipStatus?: string;
|
|
752
|
+
/**
|
|
753
|
+
* <p>The timestamp when the invitation was sent.</p>
|
|
754
|
+
*/
|
|
755
|
+
InvitedAt?: string;
|
|
756
|
+
}
|
|
757
|
+
export declare namespace Administrator {
|
|
758
|
+
/**
|
|
759
|
+
* @internal
|
|
760
|
+
*/
|
|
761
|
+
const filterSensitiveLog: (obj: Administrator) => any;
|
|
762
|
+
}
|
|
616
763
|
export interface ArchiveFindingsRequest {
|
|
617
764
|
/**
|
|
618
765
|
* <p>The ID of the detector that specifies the GuardDuty service whose findings you want to
|
|
@@ -2020,6 +2167,26 @@ export declare namespace DisableOrganizationAdminAccountResponse {
|
|
|
2020
2167
|
*/
|
|
2021
2168
|
const filterSensitiveLog: (obj: DisableOrganizationAdminAccountResponse) => any;
|
|
2022
2169
|
}
|
|
2170
|
+
export interface DisassociateFromAdministratorAccountRequest {
|
|
2171
|
+
/**
|
|
2172
|
+
* <p>The unique ID of the detector of the GuardDuty member account.</p>
|
|
2173
|
+
*/
|
|
2174
|
+
DetectorId: string | undefined;
|
|
2175
|
+
}
|
|
2176
|
+
export declare namespace DisassociateFromAdministratorAccountRequest {
|
|
2177
|
+
/**
|
|
2178
|
+
* @internal
|
|
2179
|
+
*/
|
|
2180
|
+
const filterSensitiveLog: (obj: DisassociateFromAdministratorAccountRequest) => any;
|
|
2181
|
+
}
|
|
2182
|
+
export interface DisassociateFromAdministratorAccountResponse {
|
|
2183
|
+
}
|
|
2184
|
+
export declare namespace DisassociateFromAdministratorAccountResponse {
|
|
2185
|
+
/**
|
|
2186
|
+
* @internal
|
|
2187
|
+
*/
|
|
2188
|
+
const filterSensitiveLog: (obj: DisassociateFromAdministratorAccountResponse) => any;
|
|
2189
|
+
}
|
|
2023
2190
|
export interface DisassociateFromMasterAccountRequest {
|
|
2024
2191
|
/**
|
|
2025
2192
|
* <p>The unique ID of the detector of the GuardDuty member account.</p>
|
|
@@ -2630,6 +2797,25 @@ export declare namespace Resource {
|
|
|
2630
2797
|
*/
|
|
2631
2798
|
const filterSensitiveLog: (obj: Resource) => any;
|
|
2632
2799
|
}
|
|
2800
|
+
/**
|
|
2801
|
+
* <p>Additional information about the generated finding.</p>
|
|
2802
|
+
*/
|
|
2803
|
+
export interface ServiceAdditionalInfo {
|
|
2804
|
+
/**
|
|
2805
|
+
* <p>This field specifies the value of the additional information.</p>
|
|
2806
|
+
*/
|
|
2807
|
+
Value?: string;
|
|
2808
|
+
/**
|
|
2809
|
+
* <p>Describes the type of the additional information.</p>
|
|
2810
|
+
*/
|
|
2811
|
+
Type?: string;
|
|
2812
|
+
}
|
|
2813
|
+
export declare namespace ServiceAdditionalInfo {
|
|
2814
|
+
/**
|
|
2815
|
+
* @internal
|
|
2816
|
+
*/
|
|
2817
|
+
const filterSensitiveLog: (obj: ServiceAdditionalInfo) => any;
|
|
2818
|
+
}
|
|
2633
2819
|
/**
|
|
2634
2820
|
* <p>Contains additional information about the generated finding.</p>
|
|
2635
2821
|
*/
|
|
@@ -2676,6 +2862,10 @@ export interface Service {
|
|
|
2676
2862
|
* <p>Feedback that was submitted about the finding.</p>
|
|
2677
2863
|
*/
|
|
2678
2864
|
UserFeedback?: string;
|
|
2865
|
+
/**
|
|
2866
|
+
* <p>Contains additional information about the generated finding.</p>
|
|
2867
|
+
*/
|
|
2868
|
+
AdditionalInfo?: ServiceAdditionalInfo;
|
|
2679
2869
|
}
|
|
2680
2870
|
export declare namespace Service {
|
|
2681
2871
|
/**
|
|
@@ -2774,6 +2964,30 @@ export declare namespace FindingStatistics {
|
|
|
2774
2964
|
export declare enum FindingStatisticType {
|
|
2775
2965
|
COUNT_BY_SEVERITY = "COUNT_BY_SEVERITY"
|
|
2776
2966
|
}
|
|
2967
|
+
export interface GetAdministratorAccountRequest {
|
|
2968
|
+
/**
|
|
2969
|
+
* <p>The unique ID of the detector of the GuardDuty member account.</p>
|
|
2970
|
+
*/
|
|
2971
|
+
DetectorId: string | undefined;
|
|
2972
|
+
}
|
|
2973
|
+
export declare namespace GetAdministratorAccountRequest {
|
|
2974
|
+
/**
|
|
2975
|
+
* @internal
|
|
2976
|
+
*/
|
|
2977
|
+
const filterSensitiveLog: (obj: GetAdministratorAccountRequest) => any;
|
|
2978
|
+
}
|
|
2979
|
+
export interface GetAdministratorAccountResponse {
|
|
2980
|
+
/**
|
|
2981
|
+
* <p>The administrator account details.</p>
|
|
2982
|
+
*/
|
|
2983
|
+
Administrator: Administrator | undefined;
|
|
2984
|
+
}
|
|
2985
|
+
export declare namespace GetAdministratorAccountResponse {
|
|
2986
|
+
/**
|
|
2987
|
+
* @internal
|
|
2988
|
+
*/
|
|
2989
|
+
const filterSensitiveLog: (obj: GetAdministratorAccountResponse) => any;
|
|
2990
|
+
}
|
|
2777
2991
|
export interface GetDetectorRequest {
|
|
2778
2992
|
/**
|
|
2779
2993
|
* <p>The unique ID of the detector that you want to get.</p>
|
|
@@ -3185,6 +3399,10 @@ export interface Member {
|
|
|
3185
3399
|
* <p>The last-updated timestamp of the member.</p>
|
|
3186
3400
|
*/
|
|
3187
3401
|
UpdatedAt: string | undefined;
|
|
3402
|
+
/**
|
|
3403
|
+
* <p>The administrator account ID.</p>
|
|
3404
|
+
*/
|
|
3405
|
+
AdministratorId?: string;
|
|
3188
3406
|
}
|
|
3189
3407
|
export declare namespace Member {
|
|
3190
3408
|
/**
|
|
@@ -3209,6 +3427,38 @@ export declare namespace GetMembersResponse {
|
|
|
3209
3427
|
*/
|
|
3210
3428
|
const filterSensitiveLog: (obj: GetMembersResponse) => any;
|
|
3211
3429
|
}
|
|
3430
|
+
export interface GetRemainingFreeTrialDaysRequest {
|
|
3431
|
+
/**
|
|
3432
|
+
* <p>The unique ID of the detector of the GuardDuty member account.</p>
|
|
3433
|
+
*/
|
|
3434
|
+
DetectorId: string | undefined;
|
|
3435
|
+
/**
|
|
3436
|
+
* <p>A list of account identifiers of the GuardDuty member account.</p>
|
|
3437
|
+
*/
|
|
3438
|
+
AccountIds?: string[];
|
|
3439
|
+
}
|
|
3440
|
+
export declare namespace GetRemainingFreeTrialDaysRequest {
|
|
3441
|
+
/**
|
|
3442
|
+
* @internal
|
|
3443
|
+
*/
|
|
3444
|
+
const filterSensitiveLog: (obj: GetRemainingFreeTrialDaysRequest) => any;
|
|
3445
|
+
}
|
|
3446
|
+
export interface GetRemainingFreeTrialDaysResponse {
|
|
3447
|
+
/**
|
|
3448
|
+
* <p>The member accounts which were included in a request and were processed successfully.</p>
|
|
3449
|
+
*/
|
|
3450
|
+
Accounts?: AccountFreeTrialInfo[];
|
|
3451
|
+
/**
|
|
3452
|
+
* <p>The member account that was included in a request but for which the request could not be processed.</p>
|
|
3453
|
+
*/
|
|
3454
|
+
UnprocessedAccounts?: UnprocessedAccount[];
|
|
3455
|
+
}
|
|
3456
|
+
export declare namespace GetRemainingFreeTrialDaysResponse {
|
|
3457
|
+
/**
|
|
3458
|
+
* @internal
|
|
3459
|
+
*/
|
|
3460
|
+
const filterSensitiveLog: (obj: GetRemainingFreeTrialDaysResponse) => any;
|
|
3461
|
+
}
|
|
3212
3462
|
export interface GetThreatIntelSetRequest {
|
|
3213
3463
|
/**
|
|
3214
3464
|
* <p>The unique ID of the detector that the threatIntelSet is associated with.</p>
|
|
@@ -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>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AcceptAdministratorInvitationCommandInput, AcceptAdministratorInvitationCommandOutput } from "./commands/AcceptAdministratorInvitationCommand";
|
|
2
3
|
import { AcceptInvitationCommandInput, AcceptInvitationCommandOutput } from "./commands/AcceptInvitationCommand";
|
|
3
4
|
import { ArchiveFindingsCommandInput, ArchiveFindingsCommandOutput } from "./commands/ArchiveFindingsCommand";
|
|
4
5
|
import { CreateDetectorCommandInput, CreateDetectorCommandOutput } from "./commands/CreateDetectorCommand";
|
|
@@ -19,9 +20,11 @@ import { DeleteThreatIntelSetCommandInput, DeleteThreatIntelSetCommandOutput } f
|
|
|
19
20
|
import { DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput } from "./commands/DescribeOrganizationConfigurationCommand";
|
|
20
21
|
import { DescribePublishingDestinationCommandInput, DescribePublishingDestinationCommandOutput } from "./commands/DescribePublishingDestinationCommand";
|
|
21
22
|
import { DisableOrganizationAdminAccountCommandInput, DisableOrganizationAdminAccountCommandOutput } from "./commands/DisableOrganizationAdminAccountCommand";
|
|
23
|
+
import { DisassociateFromAdministratorAccountCommandInput, DisassociateFromAdministratorAccountCommandOutput } from "./commands/DisassociateFromAdministratorAccountCommand";
|
|
22
24
|
import { DisassociateFromMasterAccountCommandInput, DisassociateFromMasterAccountCommandOutput } from "./commands/DisassociateFromMasterAccountCommand";
|
|
23
25
|
import { DisassociateMembersCommandInput, DisassociateMembersCommandOutput } from "./commands/DisassociateMembersCommand";
|
|
24
26
|
import { EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput } from "./commands/EnableOrganizationAdminAccountCommand";
|
|
27
|
+
import { GetAdministratorAccountCommandInput, GetAdministratorAccountCommandOutput } from "./commands/GetAdministratorAccountCommand";
|
|
25
28
|
import { GetDetectorCommandInput, GetDetectorCommandOutput } from "./commands/GetDetectorCommand";
|
|
26
29
|
import { GetFilterCommandInput, GetFilterCommandOutput } from "./commands/GetFilterCommand";
|
|
27
30
|
import { GetFindingsCommandInput, GetFindingsCommandOutput } from "./commands/GetFindingsCommand";
|
|
@@ -31,6 +34,7 @@ import { GetIPSetCommandInput, GetIPSetCommandOutput } from "./commands/GetIPSet
|
|
|
31
34
|
import { GetMasterAccountCommandInput, GetMasterAccountCommandOutput } from "./commands/GetMasterAccountCommand";
|
|
32
35
|
import { GetMemberDetectorsCommandInput, GetMemberDetectorsCommandOutput } from "./commands/GetMemberDetectorsCommand";
|
|
33
36
|
import { GetMembersCommandInput, GetMembersCommandOutput } from "./commands/GetMembersCommand";
|
|
37
|
+
import { GetRemainingFreeTrialDaysCommandInput, GetRemainingFreeTrialDaysCommandOutput } from "./commands/GetRemainingFreeTrialDaysCommand";
|
|
34
38
|
import { GetThreatIntelSetCommandInput, GetThreatIntelSetCommandOutput } from "./commands/GetThreatIntelSetCommand";
|
|
35
39
|
import { GetUsageStatisticsCommandInput, GetUsageStatisticsCommandOutput } from "./commands/GetUsageStatisticsCommand";
|
|
36
40
|
import { InviteMembersCommandInput, InviteMembersCommandOutput } from "./commands/InviteMembersCommand";
|
|
@@ -61,6 +65,10 @@ import { GuardDutyClient } from "./GuardDutyClient";
|
|
|
61
65
|
|
|
62
66
|
export declare class GuardDuty extends GuardDutyClient {
|
|
63
67
|
|
|
68
|
+
acceptAdministratorInvitation(args: AcceptAdministratorInvitationCommandInput, options?: __HttpHandlerOptions): Promise<AcceptAdministratorInvitationCommandOutput>;
|
|
69
|
+
acceptAdministratorInvitation(args: AcceptAdministratorInvitationCommandInput, cb: (err: any, data?: AcceptAdministratorInvitationCommandOutput) => void): void;
|
|
70
|
+
acceptAdministratorInvitation(args: AcceptAdministratorInvitationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptAdministratorInvitationCommandOutput) => void): void;
|
|
71
|
+
|
|
64
72
|
acceptInvitation(args: AcceptInvitationCommandInput, options?: __HttpHandlerOptions): Promise<AcceptInvitationCommandOutput>;
|
|
65
73
|
acceptInvitation(args: AcceptInvitationCommandInput, cb: (err: any, data?: AcceptInvitationCommandOutput) => void): void;
|
|
66
74
|
acceptInvitation(args: AcceptInvitationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptInvitationCommandOutput) => void): void;
|
|
@@ -141,6 +149,10 @@ export declare class GuardDuty extends GuardDutyClient {
|
|
|
141
149
|
disableOrganizationAdminAccount(args: DisableOrganizationAdminAccountCommandInput, cb: (err: any, data?: DisableOrganizationAdminAccountCommandOutput) => void): void;
|
|
142
150
|
disableOrganizationAdminAccount(args: DisableOrganizationAdminAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableOrganizationAdminAccountCommandOutput) => void): void;
|
|
143
151
|
|
|
152
|
+
disassociateFromAdministratorAccount(args: DisassociateFromAdministratorAccountCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateFromAdministratorAccountCommandOutput>;
|
|
153
|
+
disassociateFromAdministratorAccount(args: DisassociateFromAdministratorAccountCommandInput, cb: (err: any, data?: DisassociateFromAdministratorAccountCommandOutput) => void): void;
|
|
154
|
+
disassociateFromAdministratorAccount(args: DisassociateFromAdministratorAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateFromAdministratorAccountCommandOutput) => void): void;
|
|
155
|
+
|
|
144
156
|
disassociateFromMasterAccount(args: DisassociateFromMasterAccountCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateFromMasterAccountCommandOutput>;
|
|
145
157
|
disassociateFromMasterAccount(args: DisassociateFromMasterAccountCommandInput, cb: (err: any, data?: DisassociateFromMasterAccountCommandOutput) => void): void;
|
|
146
158
|
disassociateFromMasterAccount(args: DisassociateFromMasterAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateFromMasterAccountCommandOutput) => void): void;
|
|
@@ -153,6 +165,10 @@ export declare class GuardDuty extends GuardDutyClient {
|
|
|
153
165
|
enableOrganizationAdminAccount(args: EnableOrganizationAdminAccountCommandInput, cb: (err: any, data?: EnableOrganizationAdminAccountCommandOutput) => void): void;
|
|
154
166
|
enableOrganizationAdminAccount(args: EnableOrganizationAdminAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableOrganizationAdminAccountCommandOutput) => void): void;
|
|
155
167
|
|
|
168
|
+
getAdministratorAccount(args: GetAdministratorAccountCommandInput, options?: __HttpHandlerOptions): Promise<GetAdministratorAccountCommandOutput>;
|
|
169
|
+
getAdministratorAccount(args: GetAdministratorAccountCommandInput, cb: (err: any, data?: GetAdministratorAccountCommandOutput) => void): void;
|
|
170
|
+
getAdministratorAccount(args: GetAdministratorAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAdministratorAccountCommandOutput) => void): void;
|
|
171
|
+
|
|
156
172
|
getDetector(args: GetDetectorCommandInput, options?: __HttpHandlerOptions): Promise<GetDetectorCommandOutput>;
|
|
157
173
|
getDetector(args: GetDetectorCommandInput, cb: (err: any, data?: GetDetectorCommandOutput) => void): void;
|
|
158
174
|
getDetector(args: GetDetectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDetectorCommandOutput) => void): void;
|
|
@@ -189,6 +205,10 @@ export declare class GuardDuty extends GuardDutyClient {
|
|
|
189
205
|
getMembers(args: GetMembersCommandInput, cb: (err: any, data?: GetMembersCommandOutput) => void): void;
|
|
190
206
|
getMembers(args: GetMembersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMembersCommandOutput) => void): void;
|
|
191
207
|
|
|
208
|
+
getRemainingFreeTrialDays(args: GetRemainingFreeTrialDaysCommandInput, options?: __HttpHandlerOptions): Promise<GetRemainingFreeTrialDaysCommandOutput>;
|
|
209
|
+
getRemainingFreeTrialDays(args: GetRemainingFreeTrialDaysCommandInput, cb: (err: any, data?: GetRemainingFreeTrialDaysCommandOutput) => void): void;
|
|
210
|
+
getRemainingFreeTrialDays(args: GetRemainingFreeTrialDaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRemainingFreeTrialDaysCommandOutput) => void): void;
|
|
211
|
+
|
|
192
212
|
getThreatIntelSet(args: GetThreatIntelSetCommandInput, options?: __HttpHandlerOptions): Promise<GetThreatIntelSetCommandOutput>;
|
|
193
213
|
getThreatIntelSet(args: GetThreatIntelSetCommandInput, cb: (err: any, data?: GetThreatIntelSetCommandOutput) => void): void;
|
|
194
214
|
getThreatIntelSet(args: GetThreatIntelSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetThreatIntelSetCommandOutput) => void): void;
|
|
@@ -6,6 +6,7 @@ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middlewa
|
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { AcceptAdministratorInvitationCommandInput, AcceptAdministratorInvitationCommandOutput } from "./commands/AcceptAdministratorInvitationCommand";
|
|
9
10
|
import { AcceptInvitationCommandInput, AcceptInvitationCommandOutput } from "./commands/AcceptInvitationCommand";
|
|
10
11
|
import { ArchiveFindingsCommandInput, ArchiveFindingsCommandOutput } from "./commands/ArchiveFindingsCommand";
|
|
11
12
|
import { CreateDetectorCommandInput, CreateDetectorCommandOutput } from "./commands/CreateDetectorCommand";
|
|
@@ -26,9 +27,11 @@ import { DeleteThreatIntelSetCommandInput, DeleteThreatIntelSetCommandOutput } f
|
|
|
26
27
|
import { DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput } from "./commands/DescribeOrganizationConfigurationCommand";
|
|
27
28
|
import { DescribePublishingDestinationCommandInput, DescribePublishingDestinationCommandOutput } from "./commands/DescribePublishingDestinationCommand";
|
|
28
29
|
import { DisableOrganizationAdminAccountCommandInput, DisableOrganizationAdminAccountCommandOutput } from "./commands/DisableOrganizationAdminAccountCommand";
|
|
30
|
+
import { DisassociateFromAdministratorAccountCommandInput, DisassociateFromAdministratorAccountCommandOutput } from "./commands/DisassociateFromAdministratorAccountCommand";
|
|
29
31
|
import { DisassociateFromMasterAccountCommandInput, DisassociateFromMasterAccountCommandOutput } from "./commands/DisassociateFromMasterAccountCommand";
|
|
30
32
|
import { DisassociateMembersCommandInput, DisassociateMembersCommandOutput } from "./commands/DisassociateMembersCommand";
|
|
31
33
|
import { EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput } from "./commands/EnableOrganizationAdminAccountCommand";
|
|
34
|
+
import { GetAdministratorAccountCommandInput, GetAdministratorAccountCommandOutput } from "./commands/GetAdministratorAccountCommand";
|
|
32
35
|
import { GetDetectorCommandInput, GetDetectorCommandOutput } from "./commands/GetDetectorCommand";
|
|
33
36
|
import { GetFilterCommandInput, GetFilterCommandOutput } from "./commands/GetFilterCommand";
|
|
34
37
|
import { GetFindingsCommandInput, GetFindingsCommandOutput } from "./commands/GetFindingsCommand";
|
|
@@ -38,6 +41,7 @@ import { GetIPSetCommandInput, GetIPSetCommandOutput } from "./commands/GetIPSet
|
|
|
38
41
|
import { GetMasterAccountCommandInput, GetMasterAccountCommandOutput } from "./commands/GetMasterAccountCommand";
|
|
39
42
|
import { GetMemberDetectorsCommandInput, GetMemberDetectorsCommandOutput } from "./commands/GetMemberDetectorsCommand";
|
|
40
43
|
import { GetMembersCommandInput, GetMembersCommandOutput } from "./commands/GetMembersCommand";
|
|
44
|
+
import { GetRemainingFreeTrialDaysCommandInput, GetRemainingFreeTrialDaysCommandOutput } from "./commands/GetRemainingFreeTrialDaysCommand";
|
|
41
45
|
import { GetThreatIntelSetCommandInput, GetThreatIntelSetCommandOutput } from "./commands/GetThreatIntelSetCommand";
|
|
42
46
|
import { GetUsageStatisticsCommandInput, GetUsageStatisticsCommandOutput } from "./commands/GetUsageStatisticsCommand";
|
|
43
47
|
import { InviteMembersCommandInput, InviteMembersCommandOutput } from "./commands/InviteMembersCommand";
|
|
@@ -64,8 +68,8 @@ import { UpdateMemberDetectorsCommandInput, UpdateMemberDetectorsCommandOutput }
|
|
|
64
68
|
import { UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput } from "./commands/UpdateOrganizationConfigurationCommand";
|
|
65
69
|
import { UpdatePublishingDestinationCommandInput, UpdatePublishingDestinationCommandOutput } from "./commands/UpdatePublishingDestinationCommand";
|
|
66
70
|
import { UpdateThreatIntelSetCommandInput, UpdateThreatIntelSetCommandOutput } from "./commands/UpdateThreatIntelSetCommand";
|
|
67
|
-
export declare type ServiceInputTypes = AcceptInvitationCommandInput | ArchiveFindingsCommandInput | CreateDetectorCommandInput | CreateFilterCommandInput | CreateIPSetCommandInput | CreateMembersCommandInput | CreatePublishingDestinationCommandInput | CreateSampleFindingsCommandInput | CreateThreatIntelSetCommandInput | DeclineInvitationsCommandInput | DeleteDetectorCommandInput | DeleteFilterCommandInput | DeleteIPSetCommandInput | DeleteInvitationsCommandInput | DeleteMembersCommandInput | DeletePublishingDestinationCommandInput | DeleteThreatIntelSetCommandInput | DescribeOrganizationConfigurationCommandInput | DescribePublishingDestinationCommandInput | DisableOrganizationAdminAccountCommandInput | DisassociateFromMasterAccountCommandInput | DisassociateMembersCommandInput | EnableOrganizationAdminAccountCommandInput | GetDetectorCommandInput | GetFilterCommandInput | GetFindingsCommandInput | GetFindingsStatisticsCommandInput | GetIPSetCommandInput | GetInvitationsCountCommandInput | GetMasterAccountCommandInput | GetMemberDetectorsCommandInput | GetMembersCommandInput | GetThreatIntelSetCommandInput | GetUsageStatisticsCommandInput | InviteMembersCommandInput | ListDetectorsCommandInput | ListFiltersCommandInput | ListFindingsCommandInput | ListIPSetsCommandInput | ListInvitationsCommandInput | ListMembersCommandInput | ListOrganizationAdminAccountsCommandInput | ListPublishingDestinationsCommandInput | ListTagsForResourceCommandInput | ListThreatIntelSetsCommandInput | StartMonitoringMembersCommandInput | StopMonitoringMembersCommandInput | TagResourceCommandInput | UnarchiveFindingsCommandInput | UntagResourceCommandInput | UpdateDetectorCommandInput | UpdateFilterCommandInput | UpdateFindingsFeedbackCommandInput | UpdateIPSetCommandInput | UpdateMemberDetectorsCommandInput | UpdateOrganizationConfigurationCommandInput | UpdatePublishingDestinationCommandInput | UpdateThreatIntelSetCommandInput;
|
|
68
|
-
export declare type ServiceOutputTypes = AcceptInvitationCommandOutput | ArchiveFindingsCommandOutput | CreateDetectorCommandOutput | CreateFilterCommandOutput | CreateIPSetCommandOutput | CreateMembersCommandOutput | CreatePublishingDestinationCommandOutput | CreateSampleFindingsCommandOutput | CreateThreatIntelSetCommandOutput | DeclineInvitationsCommandOutput | DeleteDetectorCommandOutput | DeleteFilterCommandOutput | DeleteIPSetCommandOutput | DeleteInvitationsCommandOutput | DeleteMembersCommandOutput | DeletePublishingDestinationCommandOutput | DeleteThreatIntelSetCommandOutput | DescribeOrganizationConfigurationCommandOutput | DescribePublishingDestinationCommandOutput | DisableOrganizationAdminAccountCommandOutput | DisassociateFromMasterAccountCommandOutput | DisassociateMembersCommandOutput | EnableOrganizationAdminAccountCommandOutput | GetDetectorCommandOutput | GetFilterCommandOutput | GetFindingsCommandOutput | GetFindingsStatisticsCommandOutput | GetIPSetCommandOutput | GetInvitationsCountCommandOutput | GetMasterAccountCommandOutput | GetMemberDetectorsCommandOutput | GetMembersCommandOutput | GetThreatIntelSetCommandOutput | GetUsageStatisticsCommandOutput | InviteMembersCommandOutput | ListDetectorsCommandOutput | ListFiltersCommandOutput | ListFindingsCommandOutput | ListIPSetsCommandOutput | ListInvitationsCommandOutput | ListMembersCommandOutput | ListOrganizationAdminAccountsCommandOutput | ListPublishingDestinationsCommandOutput | ListTagsForResourceCommandOutput | ListThreatIntelSetsCommandOutput | StartMonitoringMembersCommandOutput | StopMonitoringMembersCommandOutput | TagResourceCommandOutput | UnarchiveFindingsCommandOutput | UntagResourceCommandOutput | UpdateDetectorCommandOutput | UpdateFilterCommandOutput | UpdateFindingsFeedbackCommandOutput | UpdateIPSetCommandOutput | UpdateMemberDetectorsCommandOutput | UpdateOrganizationConfigurationCommandOutput | UpdatePublishingDestinationCommandOutput | UpdateThreatIntelSetCommandOutput;
|
|
71
|
+
export declare type ServiceInputTypes = AcceptAdministratorInvitationCommandInput | AcceptInvitationCommandInput | ArchiveFindingsCommandInput | CreateDetectorCommandInput | CreateFilterCommandInput | CreateIPSetCommandInput | CreateMembersCommandInput | CreatePublishingDestinationCommandInput | CreateSampleFindingsCommandInput | CreateThreatIntelSetCommandInput | DeclineInvitationsCommandInput | DeleteDetectorCommandInput | DeleteFilterCommandInput | DeleteIPSetCommandInput | DeleteInvitationsCommandInput | DeleteMembersCommandInput | DeletePublishingDestinationCommandInput | DeleteThreatIntelSetCommandInput | DescribeOrganizationConfigurationCommandInput | DescribePublishingDestinationCommandInput | DisableOrganizationAdminAccountCommandInput | DisassociateFromAdministratorAccountCommandInput | DisassociateFromMasterAccountCommandInput | DisassociateMembersCommandInput | EnableOrganizationAdminAccountCommandInput | GetAdministratorAccountCommandInput | GetDetectorCommandInput | GetFilterCommandInput | GetFindingsCommandInput | GetFindingsStatisticsCommandInput | GetIPSetCommandInput | GetInvitationsCountCommandInput | GetMasterAccountCommandInput | GetMemberDetectorsCommandInput | GetMembersCommandInput | GetRemainingFreeTrialDaysCommandInput | GetThreatIntelSetCommandInput | GetUsageStatisticsCommandInput | InviteMembersCommandInput | ListDetectorsCommandInput | ListFiltersCommandInput | ListFindingsCommandInput | ListIPSetsCommandInput | ListInvitationsCommandInput | ListMembersCommandInput | ListOrganizationAdminAccountsCommandInput | ListPublishingDestinationsCommandInput | ListTagsForResourceCommandInput | ListThreatIntelSetsCommandInput | StartMonitoringMembersCommandInput | StopMonitoringMembersCommandInput | TagResourceCommandInput | UnarchiveFindingsCommandInput | UntagResourceCommandInput | UpdateDetectorCommandInput | UpdateFilterCommandInput | UpdateFindingsFeedbackCommandInput | UpdateIPSetCommandInput | UpdateMemberDetectorsCommandInput | UpdateOrganizationConfigurationCommandInput | UpdatePublishingDestinationCommandInput | UpdateThreatIntelSetCommandInput;
|
|
72
|
+
export declare type ServiceOutputTypes = AcceptAdministratorInvitationCommandOutput | AcceptInvitationCommandOutput | ArchiveFindingsCommandOutput | CreateDetectorCommandOutput | CreateFilterCommandOutput | CreateIPSetCommandOutput | CreateMembersCommandOutput | CreatePublishingDestinationCommandOutput | CreateSampleFindingsCommandOutput | CreateThreatIntelSetCommandOutput | DeclineInvitationsCommandOutput | DeleteDetectorCommandOutput | DeleteFilterCommandOutput | DeleteIPSetCommandOutput | DeleteInvitationsCommandOutput | DeleteMembersCommandOutput | DeletePublishingDestinationCommandOutput | DeleteThreatIntelSetCommandOutput | DescribeOrganizationConfigurationCommandOutput | DescribePublishingDestinationCommandOutput | DisableOrganizationAdminAccountCommandOutput | DisassociateFromAdministratorAccountCommandOutput | DisassociateFromMasterAccountCommandOutput | DisassociateMembersCommandOutput | EnableOrganizationAdminAccountCommandOutput | GetAdministratorAccountCommandOutput | GetDetectorCommandOutput | GetFilterCommandOutput | GetFindingsCommandOutput | GetFindingsStatisticsCommandOutput | GetIPSetCommandOutput | GetInvitationsCountCommandOutput | GetMasterAccountCommandOutput | GetMemberDetectorsCommandOutput | GetMembersCommandOutput | GetRemainingFreeTrialDaysCommandOutput | GetThreatIntelSetCommandOutput | GetUsageStatisticsCommandOutput | InviteMembersCommandOutput | ListDetectorsCommandOutput | ListFiltersCommandOutput | ListFindingsCommandOutput | ListIPSetsCommandOutput | ListInvitationsCommandOutput | ListMembersCommandOutput | ListOrganizationAdminAccountsCommandOutput | ListPublishingDestinationsCommandOutput | ListTagsForResourceCommandOutput | ListThreatIntelSetsCommandOutput | StartMonitoringMembersCommandOutput | StopMonitoringMembersCommandOutput | TagResourceCommandOutput | UnarchiveFindingsCommandOutput | UntagResourceCommandOutput | UpdateDetectorCommandOutput | UpdateFilterCommandOutput | UpdateFindingsFeedbackCommandOutput | UpdateIPSetCommandOutput | UpdateMemberDetectorsCommandOutput | UpdateOrganizationConfigurationCommandOutput | UpdatePublishingDestinationCommandOutput | UpdateThreatIntelSetCommandOutput;
|
|
69
73
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
70
74
|
|
|
71
75
|
requestHandler?: __HttpHandler;
|
|
@@ -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 { AcceptAdministratorInvitationRequest, AcceptAdministratorInvitationResponse } from "../models/models_0";
|
|
5
|
+
export interface AcceptAdministratorInvitationCommandInput extends AcceptAdministratorInvitationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface AcceptAdministratorInvitationCommandOutput extends AcceptAdministratorInvitationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class AcceptAdministratorInvitationCommand extends $Command<AcceptAdministratorInvitationCommandInput, AcceptAdministratorInvitationCommandOutput, GuardDutyClientResolvedConfig> {
|
|
11
|
+
readonly input: AcceptAdministratorInvitationCommandInput;
|
|
12
|
+
constructor(input: AcceptAdministratorInvitationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GuardDutyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AcceptAdministratorInvitationCommandInput, AcceptAdministratorInvitationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -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 { DisassociateFromAdministratorAccountRequest, DisassociateFromAdministratorAccountResponse } from "../models/models_0";
|
|
5
|
+
export interface DisassociateFromAdministratorAccountCommandInput extends DisassociateFromAdministratorAccountRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DisassociateFromAdministratorAccountCommandOutput extends DisassociateFromAdministratorAccountResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DisassociateFromAdministratorAccountCommand extends $Command<DisassociateFromAdministratorAccountCommandInput, DisassociateFromAdministratorAccountCommandOutput, GuardDutyClientResolvedConfig> {
|
|
11
|
+
readonly input: DisassociateFromAdministratorAccountCommandInput;
|
|
12
|
+
constructor(input: DisassociateFromAdministratorAccountCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GuardDutyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateFromAdministratorAccountCommandInput, DisassociateFromAdministratorAccountCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -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 { GetAdministratorAccountRequest, GetAdministratorAccountResponse } from "../models/models_0";
|
|
5
|
+
export interface GetAdministratorAccountCommandInput extends GetAdministratorAccountRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetAdministratorAccountCommandOutput extends GetAdministratorAccountResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetAdministratorAccountCommand extends $Command<GetAdministratorAccountCommandInput, GetAdministratorAccountCommandOutput, GuardDutyClientResolvedConfig> {
|
|
11
|
+
readonly input: GetAdministratorAccountCommandInput;
|
|
12
|
+
constructor(input: GetAdministratorAccountCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GuardDutyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAdministratorAccountCommandInput, GetAdministratorAccountCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|