@aws-sdk/client-guardduty 3.1137.0 → 3.1138.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/dist-cjs/index.js +3 -3
- package/dist-es/schemas/schemas_0.js +2 -2
- package/dist-types/GuardDuty.d.ts +211 -205
- package/dist-types/ts3.4/GuardDuty.d.ts +208 -204
- package/package.json +8 -8
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, MetricsRecorder as __MetricsRecorder, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { type AcceptAdministratorInvitationCommandInput, type AcceptAdministratorInvitationCommandOutput } from "./commands/AcceptAdministratorInvitationCommand";
|
|
3
3
|
import { type AcceptInvitationCommandInput, type AcceptInvitationCommandOutput } from "./commands/AcceptInvitationCommand";
|
|
4
4
|
import { type ArchiveFindingsCommandInput, type ArchiveFindingsCommandOutput } from "./commands/ArchiveFindingsCommand";
|
|
@@ -102,630 +102,636 @@ import { type UpdateThreatEntitySetCommandInput, type UpdateThreatEntitySetComma
|
|
|
102
102
|
import { type UpdateThreatIntelSetCommandInput, type UpdateThreatIntelSetCommandOutput } from "./commands/UpdateThreatIntelSetCommand";
|
|
103
103
|
import { type UpdateTrustedEntitySetCommandInput, type UpdateTrustedEntitySetCommandOutput } from "./commands/UpdateTrustedEntitySetCommand";
|
|
104
104
|
import { GuardDutyClient } from "./GuardDutyClient";
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
export interface GuardDutyRequestOptions extends __HttpHandlerOptions {
|
|
109
|
+
metricsRecorder?: __MetricsRecorder<unknown>;
|
|
110
|
+
}
|
|
105
111
|
export interface GuardDuty {
|
|
106
112
|
/**
|
|
107
113
|
* @see {@link AcceptAdministratorInvitationCommand}
|
|
108
114
|
*/
|
|
109
|
-
acceptAdministratorInvitation(args: AcceptAdministratorInvitationCommandInput, options?:
|
|
115
|
+
acceptAdministratorInvitation(args: AcceptAdministratorInvitationCommandInput, options?: GuardDutyRequestOptions): Promise<AcceptAdministratorInvitationCommandOutput>;
|
|
110
116
|
acceptAdministratorInvitation(args: AcceptAdministratorInvitationCommandInput, cb: (err: any, data?: AcceptAdministratorInvitationCommandOutput) => void): void;
|
|
111
|
-
acceptAdministratorInvitation(args: AcceptAdministratorInvitationCommandInput, options:
|
|
117
|
+
acceptAdministratorInvitation(args: AcceptAdministratorInvitationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: AcceptAdministratorInvitationCommandOutput) => void): void;
|
|
112
118
|
/**
|
|
113
119
|
* @see {@link AcceptInvitationCommand}
|
|
114
120
|
*/
|
|
115
|
-
acceptInvitation(args: AcceptInvitationCommandInput, options?:
|
|
121
|
+
acceptInvitation(args: AcceptInvitationCommandInput, options?: GuardDutyRequestOptions): Promise<AcceptInvitationCommandOutput>;
|
|
116
122
|
acceptInvitation(args: AcceptInvitationCommandInput, cb: (err: any, data?: AcceptInvitationCommandOutput) => void): void;
|
|
117
|
-
acceptInvitation(args: AcceptInvitationCommandInput, options:
|
|
123
|
+
acceptInvitation(args: AcceptInvitationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: AcceptInvitationCommandOutput) => void): void;
|
|
118
124
|
/**
|
|
119
125
|
* @see {@link ArchiveFindingsCommand}
|
|
120
126
|
*/
|
|
121
|
-
archiveFindings(args: ArchiveFindingsCommandInput, options?:
|
|
127
|
+
archiveFindings(args: ArchiveFindingsCommandInput, options?: GuardDutyRequestOptions): Promise<ArchiveFindingsCommandOutput>;
|
|
122
128
|
archiveFindings(args: ArchiveFindingsCommandInput, cb: (err: any, data?: ArchiveFindingsCommandOutput) => void): void;
|
|
123
|
-
archiveFindings(args: ArchiveFindingsCommandInput, options:
|
|
129
|
+
archiveFindings(args: ArchiveFindingsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ArchiveFindingsCommandOutput) => void): void;
|
|
124
130
|
/**
|
|
125
131
|
* @see {@link CreateCustomDetectionRuleAssociationCommand}
|
|
126
132
|
*/
|
|
127
|
-
createCustomDetectionRuleAssociation(args: CreateCustomDetectionRuleAssociationCommandInput, options?:
|
|
133
|
+
createCustomDetectionRuleAssociation(args: CreateCustomDetectionRuleAssociationCommandInput, options?: GuardDutyRequestOptions): Promise<CreateCustomDetectionRuleAssociationCommandOutput>;
|
|
128
134
|
createCustomDetectionRuleAssociation(args: CreateCustomDetectionRuleAssociationCommandInput, cb: (err: any, data?: CreateCustomDetectionRuleAssociationCommandOutput) => void): void;
|
|
129
|
-
createCustomDetectionRuleAssociation(args: CreateCustomDetectionRuleAssociationCommandInput, options:
|
|
135
|
+
createCustomDetectionRuleAssociation(args: CreateCustomDetectionRuleAssociationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: CreateCustomDetectionRuleAssociationCommandOutput) => void): void;
|
|
130
136
|
/**
|
|
131
137
|
* @see {@link CreateCustomDetectionRuleOrgConfigurationCommand}
|
|
132
138
|
*/
|
|
133
|
-
createCustomDetectionRuleOrgConfiguration(args: CreateCustomDetectionRuleOrgConfigurationCommandInput, options?:
|
|
139
|
+
createCustomDetectionRuleOrgConfiguration(args: CreateCustomDetectionRuleOrgConfigurationCommandInput, options?: GuardDutyRequestOptions): Promise<CreateCustomDetectionRuleOrgConfigurationCommandOutput>;
|
|
134
140
|
createCustomDetectionRuleOrgConfiguration(args: CreateCustomDetectionRuleOrgConfigurationCommandInput, cb: (err: any, data?: CreateCustomDetectionRuleOrgConfigurationCommandOutput) => void): void;
|
|
135
|
-
createCustomDetectionRuleOrgConfiguration(args: CreateCustomDetectionRuleOrgConfigurationCommandInput, options:
|
|
141
|
+
createCustomDetectionRuleOrgConfiguration(args: CreateCustomDetectionRuleOrgConfigurationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: CreateCustomDetectionRuleOrgConfigurationCommandOutput) => void): void;
|
|
136
142
|
/**
|
|
137
143
|
* @see {@link CreateDetectorCommand}
|
|
138
144
|
*/
|
|
139
|
-
createDetector(args: CreateDetectorCommandInput, options?:
|
|
145
|
+
createDetector(args: CreateDetectorCommandInput, options?: GuardDutyRequestOptions): Promise<CreateDetectorCommandOutput>;
|
|
140
146
|
createDetector(args: CreateDetectorCommandInput, cb: (err: any, data?: CreateDetectorCommandOutput) => void): void;
|
|
141
|
-
createDetector(args: CreateDetectorCommandInput, options:
|
|
147
|
+
createDetector(args: CreateDetectorCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: CreateDetectorCommandOutput) => void): void;
|
|
142
148
|
/**
|
|
143
149
|
* @see {@link CreateFilterCommand}
|
|
144
150
|
*/
|
|
145
|
-
createFilter(args: CreateFilterCommandInput, options?:
|
|
151
|
+
createFilter(args: CreateFilterCommandInput, options?: GuardDutyRequestOptions): Promise<CreateFilterCommandOutput>;
|
|
146
152
|
createFilter(args: CreateFilterCommandInput, cb: (err: any, data?: CreateFilterCommandOutput) => void): void;
|
|
147
|
-
createFilter(args: CreateFilterCommandInput, options:
|
|
153
|
+
createFilter(args: CreateFilterCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: CreateFilterCommandOutput) => void): void;
|
|
148
154
|
/**
|
|
149
155
|
* @see {@link CreateInvestigationCommand}
|
|
150
156
|
*/
|
|
151
|
-
createInvestigation(args: CreateInvestigationCommandInput, options?:
|
|
157
|
+
createInvestigation(args: CreateInvestigationCommandInput, options?: GuardDutyRequestOptions): Promise<CreateInvestigationCommandOutput>;
|
|
152
158
|
createInvestigation(args: CreateInvestigationCommandInput, cb: (err: any, data?: CreateInvestigationCommandOutput) => void): void;
|
|
153
|
-
createInvestigation(args: CreateInvestigationCommandInput, options:
|
|
159
|
+
createInvestigation(args: CreateInvestigationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: CreateInvestigationCommandOutput) => void): void;
|
|
154
160
|
/**
|
|
155
161
|
* @see {@link CreateIPSetCommand}
|
|
156
162
|
*/
|
|
157
|
-
createIPSet(args: CreateIPSetCommandInput, options?:
|
|
163
|
+
createIPSet(args: CreateIPSetCommandInput, options?: GuardDutyRequestOptions): Promise<CreateIPSetCommandOutput>;
|
|
158
164
|
createIPSet(args: CreateIPSetCommandInput, cb: (err: any, data?: CreateIPSetCommandOutput) => void): void;
|
|
159
|
-
createIPSet(args: CreateIPSetCommandInput, options:
|
|
165
|
+
createIPSet(args: CreateIPSetCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: CreateIPSetCommandOutput) => void): void;
|
|
160
166
|
/**
|
|
161
167
|
* @see {@link CreateMalwareProtectionPlanCommand}
|
|
162
168
|
*/
|
|
163
|
-
createMalwareProtectionPlan(args: CreateMalwareProtectionPlanCommandInput, options?:
|
|
169
|
+
createMalwareProtectionPlan(args: CreateMalwareProtectionPlanCommandInput, options?: GuardDutyRequestOptions): Promise<CreateMalwareProtectionPlanCommandOutput>;
|
|
164
170
|
createMalwareProtectionPlan(args: CreateMalwareProtectionPlanCommandInput, cb: (err: any, data?: CreateMalwareProtectionPlanCommandOutput) => void): void;
|
|
165
|
-
createMalwareProtectionPlan(args: CreateMalwareProtectionPlanCommandInput, options:
|
|
171
|
+
createMalwareProtectionPlan(args: CreateMalwareProtectionPlanCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: CreateMalwareProtectionPlanCommandOutput) => void): void;
|
|
166
172
|
/**
|
|
167
173
|
* @see {@link CreateMembersCommand}
|
|
168
174
|
*/
|
|
169
|
-
createMembers(args: CreateMembersCommandInput, options?:
|
|
175
|
+
createMembers(args: CreateMembersCommandInput, options?: GuardDutyRequestOptions): Promise<CreateMembersCommandOutput>;
|
|
170
176
|
createMembers(args: CreateMembersCommandInput, cb: (err: any, data?: CreateMembersCommandOutput) => void): void;
|
|
171
|
-
createMembers(args: CreateMembersCommandInput, options:
|
|
177
|
+
createMembers(args: CreateMembersCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: CreateMembersCommandOutput) => void): void;
|
|
172
178
|
/**
|
|
173
179
|
* @see {@link CreatePublishingDestinationCommand}
|
|
174
180
|
*/
|
|
175
|
-
createPublishingDestination(args: CreatePublishingDestinationCommandInput, options?:
|
|
181
|
+
createPublishingDestination(args: CreatePublishingDestinationCommandInput, options?: GuardDutyRequestOptions): Promise<CreatePublishingDestinationCommandOutput>;
|
|
176
182
|
createPublishingDestination(args: CreatePublishingDestinationCommandInput, cb: (err: any, data?: CreatePublishingDestinationCommandOutput) => void): void;
|
|
177
|
-
createPublishingDestination(args: CreatePublishingDestinationCommandInput, options:
|
|
183
|
+
createPublishingDestination(args: CreatePublishingDestinationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: CreatePublishingDestinationCommandOutput) => void): void;
|
|
178
184
|
/**
|
|
179
185
|
* @see {@link CreateSampleFindingsCommand}
|
|
180
186
|
*/
|
|
181
|
-
createSampleFindings(args: CreateSampleFindingsCommandInput, options?:
|
|
187
|
+
createSampleFindings(args: CreateSampleFindingsCommandInput, options?: GuardDutyRequestOptions): Promise<CreateSampleFindingsCommandOutput>;
|
|
182
188
|
createSampleFindings(args: CreateSampleFindingsCommandInput, cb: (err: any, data?: CreateSampleFindingsCommandOutput) => void): void;
|
|
183
|
-
createSampleFindings(args: CreateSampleFindingsCommandInput, options:
|
|
189
|
+
createSampleFindings(args: CreateSampleFindingsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: CreateSampleFindingsCommandOutput) => void): void;
|
|
184
190
|
/**
|
|
185
191
|
* @see {@link CreateThreatEntitySetCommand}
|
|
186
192
|
*/
|
|
187
|
-
createThreatEntitySet(args: CreateThreatEntitySetCommandInput, options?:
|
|
193
|
+
createThreatEntitySet(args: CreateThreatEntitySetCommandInput, options?: GuardDutyRequestOptions): Promise<CreateThreatEntitySetCommandOutput>;
|
|
188
194
|
createThreatEntitySet(args: CreateThreatEntitySetCommandInput, cb: (err: any, data?: CreateThreatEntitySetCommandOutput) => void): void;
|
|
189
|
-
createThreatEntitySet(args: CreateThreatEntitySetCommandInput, options:
|
|
195
|
+
createThreatEntitySet(args: CreateThreatEntitySetCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: CreateThreatEntitySetCommandOutput) => void): void;
|
|
190
196
|
/**
|
|
191
197
|
* @see {@link CreateThreatIntelSetCommand}
|
|
192
198
|
*/
|
|
193
|
-
createThreatIntelSet(args: CreateThreatIntelSetCommandInput, options?:
|
|
199
|
+
createThreatIntelSet(args: CreateThreatIntelSetCommandInput, options?: GuardDutyRequestOptions): Promise<CreateThreatIntelSetCommandOutput>;
|
|
194
200
|
createThreatIntelSet(args: CreateThreatIntelSetCommandInput, cb: (err: any, data?: CreateThreatIntelSetCommandOutput) => void): void;
|
|
195
|
-
createThreatIntelSet(args: CreateThreatIntelSetCommandInput, options:
|
|
201
|
+
createThreatIntelSet(args: CreateThreatIntelSetCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: CreateThreatIntelSetCommandOutput) => void): void;
|
|
196
202
|
/**
|
|
197
203
|
* @see {@link CreateTrustedEntitySetCommand}
|
|
198
204
|
*/
|
|
199
|
-
createTrustedEntitySet(args: CreateTrustedEntitySetCommandInput, options?:
|
|
205
|
+
createTrustedEntitySet(args: CreateTrustedEntitySetCommandInput, options?: GuardDutyRequestOptions): Promise<CreateTrustedEntitySetCommandOutput>;
|
|
200
206
|
createTrustedEntitySet(args: CreateTrustedEntitySetCommandInput, cb: (err: any, data?: CreateTrustedEntitySetCommandOutput) => void): void;
|
|
201
|
-
createTrustedEntitySet(args: CreateTrustedEntitySetCommandInput, options:
|
|
207
|
+
createTrustedEntitySet(args: CreateTrustedEntitySetCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: CreateTrustedEntitySetCommandOutput) => void): void;
|
|
202
208
|
/**
|
|
203
209
|
* @see {@link DeclineInvitationsCommand}
|
|
204
210
|
*/
|
|
205
|
-
declineInvitations(args: DeclineInvitationsCommandInput, options?:
|
|
211
|
+
declineInvitations(args: DeclineInvitationsCommandInput, options?: GuardDutyRequestOptions): Promise<DeclineInvitationsCommandOutput>;
|
|
206
212
|
declineInvitations(args: DeclineInvitationsCommandInput, cb: (err: any, data?: DeclineInvitationsCommandOutput) => void): void;
|
|
207
|
-
declineInvitations(args: DeclineInvitationsCommandInput, options:
|
|
213
|
+
declineInvitations(args: DeclineInvitationsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DeclineInvitationsCommandOutput) => void): void;
|
|
208
214
|
/**
|
|
209
215
|
* @see {@link DeleteCustomDetectionRuleAssociationCommand}
|
|
210
216
|
*/
|
|
211
|
-
deleteCustomDetectionRuleAssociation(args: DeleteCustomDetectionRuleAssociationCommandInput, options?:
|
|
217
|
+
deleteCustomDetectionRuleAssociation(args: DeleteCustomDetectionRuleAssociationCommandInput, options?: GuardDutyRequestOptions): Promise<DeleteCustomDetectionRuleAssociationCommandOutput>;
|
|
212
218
|
deleteCustomDetectionRuleAssociation(args: DeleteCustomDetectionRuleAssociationCommandInput, cb: (err: any, data?: DeleteCustomDetectionRuleAssociationCommandOutput) => void): void;
|
|
213
|
-
deleteCustomDetectionRuleAssociation(args: DeleteCustomDetectionRuleAssociationCommandInput, options:
|
|
219
|
+
deleteCustomDetectionRuleAssociation(args: DeleteCustomDetectionRuleAssociationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DeleteCustomDetectionRuleAssociationCommandOutput) => void): void;
|
|
214
220
|
/**
|
|
215
221
|
* @see {@link DeleteCustomDetectionRuleOrgConfigurationCommand}
|
|
216
222
|
*/
|
|
217
|
-
deleteCustomDetectionRuleOrgConfiguration(args: DeleteCustomDetectionRuleOrgConfigurationCommandInput, options?:
|
|
223
|
+
deleteCustomDetectionRuleOrgConfiguration(args: DeleteCustomDetectionRuleOrgConfigurationCommandInput, options?: GuardDutyRequestOptions): Promise<DeleteCustomDetectionRuleOrgConfigurationCommandOutput>;
|
|
218
224
|
deleteCustomDetectionRuleOrgConfiguration(args: DeleteCustomDetectionRuleOrgConfigurationCommandInput, cb: (err: any, data?: DeleteCustomDetectionRuleOrgConfigurationCommandOutput) => void): void;
|
|
219
|
-
deleteCustomDetectionRuleOrgConfiguration(args: DeleteCustomDetectionRuleOrgConfigurationCommandInput, options:
|
|
225
|
+
deleteCustomDetectionRuleOrgConfiguration(args: DeleteCustomDetectionRuleOrgConfigurationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DeleteCustomDetectionRuleOrgConfigurationCommandOutput) => void): void;
|
|
220
226
|
/**
|
|
221
227
|
* @see {@link DeleteDetectorCommand}
|
|
222
228
|
*/
|
|
223
|
-
deleteDetector(args: DeleteDetectorCommandInput, options?:
|
|
229
|
+
deleteDetector(args: DeleteDetectorCommandInput, options?: GuardDutyRequestOptions): Promise<DeleteDetectorCommandOutput>;
|
|
224
230
|
deleteDetector(args: DeleteDetectorCommandInput, cb: (err: any, data?: DeleteDetectorCommandOutput) => void): void;
|
|
225
|
-
deleteDetector(args: DeleteDetectorCommandInput, options:
|
|
231
|
+
deleteDetector(args: DeleteDetectorCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DeleteDetectorCommandOutput) => void): void;
|
|
226
232
|
/**
|
|
227
233
|
* @see {@link DeleteFilterCommand}
|
|
228
234
|
*/
|
|
229
|
-
deleteFilter(args: DeleteFilterCommandInput, options?:
|
|
235
|
+
deleteFilter(args: DeleteFilterCommandInput, options?: GuardDutyRequestOptions): Promise<DeleteFilterCommandOutput>;
|
|
230
236
|
deleteFilter(args: DeleteFilterCommandInput, cb: (err: any, data?: DeleteFilterCommandOutput) => void): void;
|
|
231
|
-
deleteFilter(args: DeleteFilterCommandInput, options:
|
|
237
|
+
deleteFilter(args: DeleteFilterCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DeleteFilterCommandOutput) => void): void;
|
|
232
238
|
/**
|
|
233
239
|
* @see {@link DeleteInvitationsCommand}
|
|
234
240
|
*/
|
|
235
|
-
deleteInvitations(args: DeleteInvitationsCommandInput, options?:
|
|
241
|
+
deleteInvitations(args: DeleteInvitationsCommandInput, options?: GuardDutyRequestOptions): Promise<DeleteInvitationsCommandOutput>;
|
|
236
242
|
deleteInvitations(args: DeleteInvitationsCommandInput, cb: (err: any, data?: DeleteInvitationsCommandOutput) => void): void;
|
|
237
|
-
deleteInvitations(args: DeleteInvitationsCommandInput, options:
|
|
243
|
+
deleteInvitations(args: DeleteInvitationsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DeleteInvitationsCommandOutput) => void): void;
|
|
238
244
|
/**
|
|
239
245
|
* @see {@link DeleteIPSetCommand}
|
|
240
246
|
*/
|
|
241
|
-
deleteIPSet(args: DeleteIPSetCommandInput, options?:
|
|
247
|
+
deleteIPSet(args: DeleteIPSetCommandInput, options?: GuardDutyRequestOptions): Promise<DeleteIPSetCommandOutput>;
|
|
242
248
|
deleteIPSet(args: DeleteIPSetCommandInput, cb: (err: any, data?: DeleteIPSetCommandOutput) => void): void;
|
|
243
|
-
deleteIPSet(args: DeleteIPSetCommandInput, options:
|
|
249
|
+
deleteIPSet(args: DeleteIPSetCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DeleteIPSetCommandOutput) => void): void;
|
|
244
250
|
/**
|
|
245
251
|
* @see {@link DeleteMalwareProtectionPlanCommand}
|
|
246
252
|
*/
|
|
247
|
-
deleteMalwareProtectionPlan(args: DeleteMalwareProtectionPlanCommandInput, options?:
|
|
253
|
+
deleteMalwareProtectionPlan(args: DeleteMalwareProtectionPlanCommandInput, options?: GuardDutyRequestOptions): Promise<DeleteMalwareProtectionPlanCommandOutput>;
|
|
248
254
|
deleteMalwareProtectionPlan(args: DeleteMalwareProtectionPlanCommandInput, cb: (err: any, data?: DeleteMalwareProtectionPlanCommandOutput) => void): void;
|
|
249
|
-
deleteMalwareProtectionPlan(args: DeleteMalwareProtectionPlanCommandInput, options:
|
|
255
|
+
deleteMalwareProtectionPlan(args: DeleteMalwareProtectionPlanCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DeleteMalwareProtectionPlanCommandOutput) => void): void;
|
|
250
256
|
/**
|
|
251
257
|
* @see {@link DeleteMembersCommand}
|
|
252
258
|
*/
|
|
253
|
-
deleteMembers(args: DeleteMembersCommandInput, options?:
|
|
259
|
+
deleteMembers(args: DeleteMembersCommandInput, options?: GuardDutyRequestOptions): Promise<DeleteMembersCommandOutput>;
|
|
254
260
|
deleteMembers(args: DeleteMembersCommandInput, cb: (err: any, data?: DeleteMembersCommandOutput) => void): void;
|
|
255
|
-
deleteMembers(args: DeleteMembersCommandInput, options:
|
|
261
|
+
deleteMembers(args: DeleteMembersCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DeleteMembersCommandOutput) => void): void;
|
|
256
262
|
/**
|
|
257
263
|
* @see {@link DeletePublishingDestinationCommand}
|
|
258
264
|
*/
|
|
259
|
-
deletePublishingDestination(args: DeletePublishingDestinationCommandInput, options?:
|
|
265
|
+
deletePublishingDestination(args: DeletePublishingDestinationCommandInput, options?: GuardDutyRequestOptions): Promise<DeletePublishingDestinationCommandOutput>;
|
|
260
266
|
deletePublishingDestination(args: DeletePublishingDestinationCommandInput, cb: (err: any, data?: DeletePublishingDestinationCommandOutput) => void): void;
|
|
261
|
-
deletePublishingDestination(args: DeletePublishingDestinationCommandInput, options:
|
|
267
|
+
deletePublishingDestination(args: DeletePublishingDestinationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DeletePublishingDestinationCommandOutput) => void): void;
|
|
262
268
|
/**
|
|
263
269
|
* @see {@link DeleteThreatEntitySetCommand}
|
|
264
270
|
*/
|
|
265
|
-
deleteThreatEntitySet(args: DeleteThreatEntitySetCommandInput, options?:
|
|
271
|
+
deleteThreatEntitySet(args: DeleteThreatEntitySetCommandInput, options?: GuardDutyRequestOptions): Promise<DeleteThreatEntitySetCommandOutput>;
|
|
266
272
|
deleteThreatEntitySet(args: DeleteThreatEntitySetCommandInput, cb: (err: any, data?: DeleteThreatEntitySetCommandOutput) => void): void;
|
|
267
|
-
deleteThreatEntitySet(args: DeleteThreatEntitySetCommandInput, options:
|
|
273
|
+
deleteThreatEntitySet(args: DeleteThreatEntitySetCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DeleteThreatEntitySetCommandOutput) => void): void;
|
|
268
274
|
/**
|
|
269
275
|
* @see {@link DeleteThreatIntelSetCommand}
|
|
270
276
|
*/
|
|
271
|
-
deleteThreatIntelSet(args: DeleteThreatIntelSetCommandInput, options?:
|
|
277
|
+
deleteThreatIntelSet(args: DeleteThreatIntelSetCommandInput, options?: GuardDutyRequestOptions): Promise<DeleteThreatIntelSetCommandOutput>;
|
|
272
278
|
deleteThreatIntelSet(args: DeleteThreatIntelSetCommandInput, cb: (err: any, data?: DeleteThreatIntelSetCommandOutput) => void): void;
|
|
273
|
-
deleteThreatIntelSet(args: DeleteThreatIntelSetCommandInput, options:
|
|
279
|
+
deleteThreatIntelSet(args: DeleteThreatIntelSetCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DeleteThreatIntelSetCommandOutput) => void): void;
|
|
274
280
|
/**
|
|
275
281
|
* @see {@link DeleteTrustedEntitySetCommand}
|
|
276
282
|
*/
|
|
277
|
-
deleteTrustedEntitySet(args: DeleteTrustedEntitySetCommandInput, options?:
|
|
283
|
+
deleteTrustedEntitySet(args: DeleteTrustedEntitySetCommandInput, options?: GuardDutyRequestOptions): Promise<DeleteTrustedEntitySetCommandOutput>;
|
|
278
284
|
deleteTrustedEntitySet(args: DeleteTrustedEntitySetCommandInput, cb: (err: any, data?: DeleteTrustedEntitySetCommandOutput) => void): void;
|
|
279
|
-
deleteTrustedEntitySet(args: DeleteTrustedEntitySetCommandInput, options:
|
|
285
|
+
deleteTrustedEntitySet(args: DeleteTrustedEntitySetCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DeleteTrustedEntitySetCommandOutput) => void): void;
|
|
280
286
|
/**
|
|
281
287
|
* @see {@link DescribeMalwareScansCommand}
|
|
282
288
|
*/
|
|
283
|
-
describeMalwareScans(args: DescribeMalwareScansCommandInput, options?:
|
|
289
|
+
describeMalwareScans(args: DescribeMalwareScansCommandInput, options?: GuardDutyRequestOptions): Promise<DescribeMalwareScansCommandOutput>;
|
|
284
290
|
describeMalwareScans(args: DescribeMalwareScansCommandInput, cb: (err: any, data?: DescribeMalwareScansCommandOutput) => void): void;
|
|
285
|
-
describeMalwareScans(args: DescribeMalwareScansCommandInput, options:
|
|
291
|
+
describeMalwareScans(args: DescribeMalwareScansCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DescribeMalwareScansCommandOutput) => void): void;
|
|
286
292
|
/**
|
|
287
293
|
* @see {@link DescribeOrganizationConfigurationCommand}
|
|
288
294
|
*/
|
|
289
|
-
describeOrganizationConfiguration(args: DescribeOrganizationConfigurationCommandInput, options?:
|
|
295
|
+
describeOrganizationConfiguration(args: DescribeOrganizationConfigurationCommandInput, options?: GuardDutyRequestOptions): Promise<DescribeOrganizationConfigurationCommandOutput>;
|
|
290
296
|
describeOrganizationConfiguration(args: DescribeOrganizationConfigurationCommandInput, cb: (err: any, data?: DescribeOrganizationConfigurationCommandOutput) => void): void;
|
|
291
|
-
describeOrganizationConfiguration(args: DescribeOrganizationConfigurationCommandInput, options:
|
|
297
|
+
describeOrganizationConfiguration(args: DescribeOrganizationConfigurationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DescribeOrganizationConfigurationCommandOutput) => void): void;
|
|
292
298
|
/**
|
|
293
299
|
* @see {@link DescribePublishingDestinationCommand}
|
|
294
300
|
*/
|
|
295
|
-
describePublishingDestination(args: DescribePublishingDestinationCommandInput, options?:
|
|
301
|
+
describePublishingDestination(args: DescribePublishingDestinationCommandInput, options?: GuardDutyRequestOptions): Promise<DescribePublishingDestinationCommandOutput>;
|
|
296
302
|
describePublishingDestination(args: DescribePublishingDestinationCommandInput, cb: (err: any, data?: DescribePublishingDestinationCommandOutput) => void): void;
|
|
297
|
-
describePublishingDestination(args: DescribePublishingDestinationCommandInput, options:
|
|
303
|
+
describePublishingDestination(args: DescribePublishingDestinationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DescribePublishingDestinationCommandOutput) => void): void;
|
|
298
304
|
/**
|
|
299
305
|
* @see {@link DisableOrganizationAdminAccountCommand}
|
|
300
306
|
*/
|
|
301
|
-
disableOrganizationAdminAccount(args: DisableOrganizationAdminAccountCommandInput, options?:
|
|
307
|
+
disableOrganizationAdminAccount(args: DisableOrganizationAdminAccountCommandInput, options?: GuardDutyRequestOptions): Promise<DisableOrganizationAdminAccountCommandOutput>;
|
|
302
308
|
disableOrganizationAdminAccount(args: DisableOrganizationAdminAccountCommandInput, cb: (err: any, data?: DisableOrganizationAdminAccountCommandOutput) => void): void;
|
|
303
|
-
disableOrganizationAdminAccount(args: DisableOrganizationAdminAccountCommandInput, options:
|
|
309
|
+
disableOrganizationAdminAccount(args: DisableOrganizationAdminAccountCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DisableOrganizationAdminAccountCommandOutput) => void): void;
|
|
304
310
|
/**
|
|
305
311
|
* @see {@link DisassociateFromAdministratorAccountCommand}
|
|
306
312
|
*/
|
|
307
|
-
disassociateFromAdministratorAccount(args: DisassociateFromAdministratorAccountCommandInput, options?:
|
|
313
|
+
disassociateFromAdministratorAccount(args: DisassociateFromAdministratorAccountCommandInput, options?: GuardDutyRequestOptions): Promise<DisassociateFromAdministratorAccountCommandOutput>;
|
|
308
314
|
disassociateFromAdministratorAccount(args: DisassociateFromAdministratorAccountCommandInput, cb: (err: any, data?: DisassociateFromAdministratorAccountCommandOutput) => void): void;
|
|
309
|
-
disassociateFromAdministratorAccount(args: DisassociateFromAdministratorAccountCommandInput, options:
|
|
315
|
+
disassociateFromAdministratorAccount(args: DisassociateFromAdministratorAccountCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DisassociateFromAdministratorAccountCommandOutput) => void): void;
|
|
310
316
|
/**
|
|
311
317
|
* @see {@link DisassociateFromMasterAccountCommand}
|
|
312
318
|
*/
|
|
313
|
-
disassociateFromMasterAccount(args: DisassociateFromMasterAccountCommandInput, options?:
|
|
319
|
+
disassociateFromMasterAccount(args: DisassociateFromMasterAccountCommandInput, options?: GuardDutyRequestOptions): Promise<DisassociateFromMasterAccountCommandOutput>;
|
|
314
320
|
disassociateFromMasterAccount(args: DisassociateFromMasterAccountCommandInput, cb: (err: any, data?: DisassociateFromMasterAccountCommandOutput) => void): void;
|
|
315
|
-
disassociateFromMasterAccount(args: DisassociateFromMasterAccountCommandInput, options:
|
|
321
|
+
disassociateFromMasterAccount(args: DisassociateFromMasterAccountCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DisassociateFromMasterAccountCommandOutput) => void): void;
|
|
316
322
|
/**
|
|
317
323
|
* @see {@link DisassociateMembersCommand}
|
|
318
324
|
*/
|
|
319
|
-
disassociateMembers(args: DisassociateMembersCommandInput, options?:
|
|
325
|
+
disassociateMembers(args: DisassociateMembersCommandInput, options?: GuardDutyRequestOptions): Promise<DisassociateMembersCommandOutput>;
|
|
320
326
|
disassociateMembers(args: DisassociateMembersCommandInput, cb: (err: any, data?: DisassociateMembersCommandOutput) => void): void;
|
|
321
|
-
disassociateMembers(args: DisassociateMembersCommandInput, options:
|
|
327
|
+
disassociateMembers(args: DisassociateMembersCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: DisassociateMembersCommandOutput) => void): void;
|
|
322
328
|
/**
|
|
323
329
|
* @see {@link EnableOrganizationAdminAccountCommand}
|
|
324
330
|
*/
|
|
325
|
-
enableOrganizationAdminAccount(args: EnableOrganizationAdminAccountCommandInput, options?:
|
|
331
|
+
enableOrganizationAdminAccount(args: EnableOrganizationAdminAccountCommandInput, options?: GuardDutyRequestOptions): Promise<EnableOrganizationAdminAccountCommandOutput>;
|
|
326
332
|
enableOrganizationAdminAccount(args: EnableOrganizationAdminAccountCommandInput, cb: (err: any, data?: EnableOrganizationAdminAccountCommandOutput) => void): void;
|
|
327
|
-
enableOrganizationAdminAccount(args: EnableOrganizationAdminAccountCommandInput, options:
|
|
333
|
+
enableOrganizationAdminAccount(args: EnableOrganizationAdminAccountCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: EnableOrganizationAdminAccountCommandOutput) => void): void;
|
|
328
334
|
/**
|
|
329
335
|
* @see {@link GetAdministratorAccountCommand}
|
|
330
336
|
*/
|
|
331
|
-
getAdministratorAccount(args: GetAdministratorAccountCommandInput, options?:
|
|
337
|
+
getAdministratorAccount(args: GetAdministratorAccountCommandInput, options?: GuardDutyRequestOptions): Promise<GetAdministratorAccountCommandOutput>;
|
|
332
338
|
getAdministratorAccount(args: GetAdministratorAccountCommandInput, cb: (err: any, data?: GetAdministratorAccountCommandOutput) => void): void;
|
|
333
|
-
getAdministratorAccount(args: GetAdministratorAccountCommandInput, options:
|
|
339
|
+
getAdministratorAccount(args: GetAdministratorAccountCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetAdministratorAccountCommandOutput) => void): void;
|
|
334
340
|
/**
|
|
335
341
|
* @see {@link GetCoverageStatisticsCommand}
|
|
336
342
|
*/
|
|
337
|
-
getCoverageStatistics(args: GetCoverageStatisticsCommandInput, options?:
|
|
343
|
+
getCoverageStatistics(args: GetCoverageStatisticsCommandInput, options?: GuardDutyRequestOptions): Promise<GetCoverageStatisticsCommandOutput>;
|
|
338
344
|
getCoverageStatistics(args: GetCoverageStatisticsCommandInput, cb: (err: any, data?: GetCoverageStatisticsCommandOutput) => void): void;
|
|
339
|
-
getCoverageStatistics(args: GetCoverageStatisticsCommandInput, options:
|
|
345
|
+
getCoverageStatistics(args: GetCoverageStatisticsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetCoverageStatisticsCommandOutput) => void): void;
|
|
340
346
|
/**
|
|
341
347
|
* @see {@link GetCustomDetectionRuleCommand}
|
|
342
348
|
*/
|
|
343
|
-
getCustomDetectionRule(args: GetCustomDetectionRuleCommandInput, options?:
|
|
349
|
+
getCustomDetectionRule(args: GetCustomDetectionRuleCommandInput, options?: GuardDutyRequestOptions): Promise<GetCustomDetectionRuleCommandOutput>;
|
|
344
350
|
getCustomDetectionRule(args: GetCustomDetectionRuleCommandInput, cb: (err: any, data?: GetCustomDetectionRuleCommandOutput) => void): void;
|
|
345
|
-
getCustomDetectionRule(args: GetCustomDetectionRuleCommandInput, options:
|
|
351
|
+
getCustomDetectionRule(args: GetCustomDetectionRuleCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetCustomDetectionRuleCommandOutput) => void): void;
|
|
346
352
|
/**
|
|
347
353
|
* @see {@link GetCustomDetectionRuleAssociationCommand}
|
|
348
354
|
*/
|
|
349
|
-
getCustomDetectionRuleAssociation(args: GetCustomDetectionRuleAssociationCommandInput, options?:
|
|
355
|
+
getCustomDetectionRuleAssociation(args: GetCustomDetectionRuleAssociationCommandInput, options?: GuardDutyRequestOptions): Promise<GetCustomDetectionRuleAssociationCommandOutput>;
|
|
350
356
|
getCustomDetectionRuleAssociation(args: GetCustomDetectionRuleAssociationCommandInput, cb: (err: any, data?: GetCustomDetectionRuleAssociationCommandOutput) => void): void;
|
|
351
|
-
getCustomDetectionRuleAssociation(args: GetCustomDetectionRuleAssociationCommandInput, options:
|
|
357
|
+
getCustomDetectionRuleAssociation(args: GetCustomDetectionRuleAssociationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetCustomDetectionRuleAssociationCommandOutput) => void): void;
|
|
352
358
|
/**
|
|
353
359
|
* @see {@link GetCustomDetectionRuleOrgConfigurationCommand}
|
|
354
360
|
*/
|
|
355
|
-
getCustomDetectionRuleOrgConfiguration(args: GetCustomDetectionRuleOrgConfigurationCommandInput, options?:
|
|
361
|
+
getCustomDetectionRuleOrgConfiguration(args: GetCustomDetectionRuleOrgConfigurationCommandInput, options?: GuardDutyRequestOptions): Promise<GetCustomDetectionRuleOrgConfigurationCommandOutput>;
|
|
356
362
|
getCustomDetectionRuleOrgConfiguration(args: GetCustomDetectionRuleOrgConfigurationCommandInput, cb: (err: any, data?: GetCustomDetectionRuleOrgConfigurationCommandOutput) => void): void;
|
|
357
|
-
getCustomDetectionRuleOrgConfiguration(args: GetCustomDetectionRuleOrgConfigurationCommandInput, options:
|
|
363
|
+
getCustomDetectionRuleOrgConfiguration(args: GetCustomDetectionRuleOrgConfigurationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetCustomDetectionRuleOrgConfigurationCommandOutput) => void): void;
|
|
358
364
|
/**
|
|
359
365
|
* @see {@link GetDetectorCommand}
|
|
360
366
|
*/
|
|
361
|
-
getDetector(args: GetDetectorCommandInput, options?:
|
|
367
|
+
getDetector(args: GetDetectorCommandInput, options?: GuardDutyRequestOptions): Promise<GetDetectorCommandOutput>;
|
|
362
368
|
getDetector(args: GetDetectorCommandInput, cb: (err: any, data?: GetDetectorCommandOutput) => void): void;
|
|
363
|
-
getDetector(args: GetDetectorCommandInput, options:
|
|
369
|
+
getDetector(args: GetDetectorCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetDetectorCommandOutput) => void): void;
|
|
364
370
|
/**
|
|
365
371
|
* @see {@link GetFilterCommand}
|
|
366
372
|
*/
|
|
367
|
-
getFilter(args: GetFilterCommandInput, options?:
|
|
373
|
+
getFilter(args: GetFilterCommandInput, options?: GuardDutyRequestOptions): Promise<GetFilterCommandOutput>;
|
|
368
374
|
getFilter(args: GetFilterCommandInput, cb: (err: any, data?: GetFilterCommandOutput) => void): void;
|
|
369
|
-
getFilter(args: GetFilterCommandInput, options:
|
|
375
|
+
getFilter(args: GetFilterCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetFilterCommandOutput) => void): void;
|
|
370
376
|
/**
|
|
371
377
|
* @see {@link GetFindingsCommand}
|
|
372
378
|
*/
|
|
373
|
-
getFindings(args: GetFindingsCommandInput, options?:
|
|
379
|
+
getFindings(args: GetFindingsCommandInput, options?: GuardDutyRequestOptions): Promise<GetFindingsCommandOutput>;
|
|
374
380
|
getFindings(args: GetFindingsCommandInput, cb: (err: any, data?: GetFindingsCommandOutput) => void): void;
|
|
375
|
-
getFindings(args: GetFindingsCommandInput, options:
|
|
381
|
+
getFindings(args: GetFindingsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetFindingsCommandOutput) => void): void;
|
|
376
382
|
/**
|
|
377
383
|
* @see {@link GetFindingsStatisticsCommand}
|
|
378
384
|
*/
|
|
379
|
-
getFindingsStatistics(args: GetFindingsStatisticsCommandInput, options?:
|
|
385
|
+
getFindingsStatistics(args: GetFindingsStatisticsCommandInput, options?: GuardDutyRequestOptions): Promise<GetFindingsStatisticsCommandOutput>;
|
|
380
386
|
getFindingsStatistics(args: GetFindingsStatisticsCommandInput, cb: (err: any, data?: GetFindingsStatisticsCommandOutput) => void): void;
|
|
381
|
-
getFindingsStatistics(args: GetFindingsStatisticsCommandInput, options:
|
|
387
|
+
getFindingsStatistics(args: GetFindingsStatisticsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetFindingsStatisticsCommandOutput) => void): void;
|
|
382
388
|
/**
|
|
383
389
|
* @see {@link GetInvestigationCommand}
|
|
384
390
|
*/
|
|
385
|
-
getInvestigation(args: GetInvestigationCommandInput, options?:
|
|
391
|
+
getInvestigation(args: GetInvestigationCommandInput, options?: GuardDutyRequestOptions): Promise<GetInvestigationCommandOutput>;
|
|
386
392
|
getInvestigation(args: GetInvestigationCommandInput, cb: (err: any, data?: GetInvestigationCommandOutput) => void): void;
|
|
387
|
-
getInvestigation(args: GetInvestigationCommandInput, options:
|
|
393
|
+
getInvestigation(args: GetInvestigationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetInvestigationCommandOutput) => void): void;
|
|
388
394
|
/**
|
|
389
395
|
* @see {@link GetInvitationsCountCommand}
|
|
390
396
|
*/
|
|
391
397
|
getInvitationsCount(): Promise<GetInvitationsCountCommandOutput>;
|
|
392
|
-
getInvitationsCount(args: GetInvitationsCountCommandInput, options?:
|
|
398
|
+
getInvitationsCount(args: GetInvitationsCountCommandInput, options?: GuardDutyRequestOptions): Promise<GetInvitationsCountCommandOutput>;
|
|
393
399
|
getInvitationsCount(args: GetInvitationsCountCommandInput, cb: (err: any, data?: GetInvitationsCountCommandOutput) => void): void;
|
|
394
|
-
getInvitationsCount(args: GetInvitationsCountCommandInput, options:
|
|
400
|
+
getInvitationsCount(args: GetInvitationsCountCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetInvitationsCountCommandOutput) => void): void;
|
|
395
401
|
/**
|
|
396
402
|
* @see {@link GetIPSetCommand}
|
|
397
403
|
*/
|
|
398
|
-
getIPSet(args: GetIPSetCommandInput, options?:
|
|
404
|
+
getIPSet(args: GetIPSetCommandInput, options?: GuardDutyRequestOptions): Promise<GetIPSetCommandOutput>;
|
|
399
405
|
getIPSet(args: GetIPSetCommandInput, cb: (err: any, data?: GetIPSetCommandOutput) => void): void;
|
|
400
|
-
getIPSet(args: GetIPSetCommandInput, options:
|
|
406
|
+
getIPSet(args: GetIPSetCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetIPSetCommandOutput) => void): void;
|
|
401
407
|
/**
|
|
402
408
|
* @see {@link GetMalwareProtectionPlanCommand}
|
|
403
409
|
*/
|
|
404
|
-
getMalwareProtectionPlan(args: GetMalwareProtectionPlanCommandInput, options?:
|
|
410
|
+
getMalwareProtectionPlan(args: GetMalwareProtectionPlanCommandInput, options?: GuardDutyRequestOptions): Promise<GetMalwareProtectionPlanCommandOutput>;
|
|
405
411
|
getMalwareProtectionPlan(args: GetMalwareProtectionPlanCommandInput, cb: (err: any, data?: GetMalwareProtectionPlanCommandOutput) => void): void;
|
|
406
|
-
getMalwareProtectionPlan(args: GetMalwareProtectionPlanCommandInput, options:
|
|
412
|
+
getMalwareProtectionPlan(args: GetMalwareProtectionPlanCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetMalwareProtectionPlanCommandOutput) => void): void;
|
|
407
413
|
/**
|
|
408
414
|
* @see {@link GetMalwareScanCommand}
|
|
409
415
|
*/
|
|
410
|
-
getMalwareScan(args: GetMalwareScanCommandInput, options?:
|
|
416
|
+
getMalwareScan(args: GetMalwareScanCommandInput, options?: GuardDutyRequestOptions): Promise<GetMalwareScanCommandOutput>;
|
|
411
417
|
getMalwareScan(args: GetMalwareScanCommandInput, cb: (err: any, data?: GetMalwareScanCommandOutput) => void): void;
|
|
412
|
-
getMalwareScan(args: GetMalwareScanCommandInput, options:
|
|
418
|
+
getMalwareScan(args: GetMalwareScanCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetMalwareScanCommandOutput) => void): void;
|
|
413
419
|
/**
|
|
414
420
|
* @see {@link GetMalwareScanSettingsCommand}
|
|
415
421
|
*/
|
|
416
|
-
getMalwareScanSettings(args: GetMalwareScanSettingsCommandInput, options?:
|
|
422
|
+
getMalwareScanSettings(args: GetMalwareScanSettingsCommandInput, options?: GuardDutyRequestOptions): Promise<GetMalwareScanSettingsCommandOutput>;
|
|
417
423
|
getMalwareScanSettings(args: GetMalwareScanSettingsCommandInput, cb: (err: any, data?: GetMalwareScanSettingsCommandOutput) => void): void;
|
|
418
|
-
getMalwareScanSettings(args: GetMalwareScanSettingsCommandInput, options:
|
|
424
|
+
getMalwareScanSettings(args: GetMalwareScanSettingsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetMalwareScanSettingsCommandOutput) => void): void;
|
|
419
425
|
/**
|
|
420
426
|
* @see {@link GetMasterAccountCommand}
|
|
421
427
|
*/
|
|
422
|
-
getMasterAccount(args: GetMasterAccountCommandInput, options?:
|
|
428
|
+
getMasterAccount(args: GetMasterAccountCommandInput, options?: GuardDutyRequestOptions): Promise<GetMasterAccountCommandOutput>;
|
|
423
429
|
getMasterAccount(args: GetMasterAccountCommandInput, cb: (err: any, data?: GetMasterAccountCommandOutput) => void): void;
|
|
424
|
-
getMasterAccount(args: GetMasterAccountCommandInput, options:
|
|
430
|
+
getMasterAccount(args: GetMasterAccountCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetMasterAccountCommandOutput) => void): void;
|
|
425
431
|
/**
|
|
426
432
|
* @see {@link GetMemberDetectorsCommand}
|
|
427
433
|
*/
|
|
428
|
-
getMemberDetectors(args: GetMemberDetectorsCommandInput, options?:
|
|
434
|
+
getMemberDetectors(args: GetMemberDetectorsCommandInput, options?: GuardDutyRequestOptions): Promise<GetMemberDetectorsCommandOutput>;
|
|
429
435
|
getMemberDetectors(args: GetMemberDetectorsCommandInput, cb: (err: any, data?: GetMemberDetectorsCommandOutput) => void): void;
|
|
430
|
-
getMemberDetectors(args: GetMemberDetectorsCommandInput, options:
|
|
436
|
+
getMemberDetectors(args: GetMemberDetectorsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetMemberDetectorsCommandOutput) => void): void;
|
|
431
437
|
/**
|
|
432
438
|
* @see {@link GetMembersCommand}
|
|
433
439
|
*/
|
|
434
|
-
getMembers(args: GetMembersCommandInput, options?:
|
|
440
|
+
getMembers(args: GetMembersCommandInput, options?: GuardDutyRequestOptions): Promise<GetMembersCommandOutput>;
|
|
435
441
|
getMembers(args: GetMembersCommandInput, cb: (err: any, data?: GetMembersCommandOutput) => void): void;
|
|
436
|
-
getMembers(args: GetMembersCommandInput, options:
|
|
442
|
+
getMembers(args: GetMembersCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetMembersCommandOutput) => void): void;
|
|
437
443
|
/**
|
|
438
444
|
* @see {@link GetOrganizationStatisticsCommand}
|
|
439
445
|
*/
|
|
440
446
|
getOrganizationStatistics(): Promise<GetOrganizationStatisticsCommandOutput>;
|
|
441
|
-
getOrganizationStatistics(args: GetOrganizationStatisticsCommandInput, options?:
|
|
447
|
+
getOrganizationStatistics(args: GetOrganizationStatisticsCommandInput, options?: GuardDutyRequestOptions): Promise<GetOrganizationStatisticsCommandOutput>;
|
|
442
448
|
getOrganizationStatistics(args: GetOrganizationStatisticsCommandInput, cb: (err: any, data?: GetOrganizationStatisticsCommandOutput) => void): void;
|
|
443
|
-
getOrganizationStatistics(args: GetOrganizationStatisticsCommandInput, options:
|
|
449
|
+
getOrganizationStatistics(args: GetOrganizationStatisticsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetOrganizationStatisticsCommandOutput) => void): void;
|
|
444
450
|
/**
|
|
445
451
|
* @see {@link GetRemainingFreeTrialDaysCommand}
|
|
446
452
|
*/
|
|
447
|
-
getRemainingFreeTrialDays(args: GetRemainingFreeTrialDaysCommandInput, options?:
|
|
453
|
+
getRemainingFreeTrialDays(args: GetRemainingFreeTrialDaysCommandInput, options?: GuardDutyRequestOptions): Promise<GetRemainingFreeTrialDaysCommandOutput>;
|
|
448
454
|
getRemainingFreeTrialDays(args: GetRemainingFreeTrialDaysCommandInput, cb: (err: any, data?: GetRemainingFreeTrialDaysCommandOutput) => void): void;
|
|
449
|
-
getRemainingFreeTrialDays(args: GetRemainingFreeTrialDaysCommandInput, options:
|
|
455
|
+
getRemainingFreeTrialDays(args: GetRemainingFreeTrialDaysCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetRemainingFreeTrialDaysCommandOutput) => void): void;
|
|
450
456
|
/**
|
|
451
457
|
* @see {@link GetThreatEntitySetCommand}
|
|
452
458
|
*/
|
|
453
|
-
getThreatEntitySet(args: GetThreatEntitySetCommandInput, options?:
|
|
459
|
+
getThreatEntitySet(args: GetThreatEntitySetCommandInput, options?: GuardDutyRequestOptions): Promise<GetThreatEntitySetCommandOutput>;
|
|
454
460
|
getThreatEntitySet(args: GetThreatEntitySetCommandInput, cb: (err: any, data?: GetThreatEntitySetCommandOutput) => void): void;
|
|
455
|
-
getThreatEntitySet(args: GetThreatEntitySetCommandInput, options:
|
|
461
|
+
getThreatEntitySet(args: GetThreatEntitySetCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetThreatEntitySetCommandOutput) => void): void;
|
|
456
462
|
/**
|
|
457
463
|
* @see {@link GetThreatIntelSetCommand}
|
|
458
464
|
*/
|
|
459
|
-
getThreatIntelSet(args: GetThreatIntelSetCommandInput, options?:
|
|
465
|
+
getThreatIntelSet(args: GetThreatIntelSetCommandInput, options?: GuardDutyRequestOptions): Promise<GetThreatIntelSetCommandOutput>;
|
|
460
466
|
getThreatIntelSet(args: GetThreatIntelSetCommandInput, cb: (err: any, data?: GetThreatIntelSetCommandOutput) => void): void;
|
|
461
|
-
getThreatIntelSet(args: GetThreatIntelSetCommandInput, options:
|
|
467
|
+
getThreatIntelSet(args: GetThreatIntelSetCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetThreatIntelSetCommandOutput) => void): void;
|
|
462
468
|
/**
|
|
463
469
|
* @see {@link GetTrustedEntitySetCommand}
|
|
464
470
|
*/
|
|
465
|
-
getTrustedEntitySet(args: GetTrustedEntitySetCommandInput, options?:
|
|
471
|
+
getTrustedEntitySet(args: GetTrustedEntitySetCommandInput, options?: GuardDutyRequestOptions): Promise<GetTrustedEntitySetCommandOutput>;
|
|
466
472
|
getTrustedEntitySet(args: GetTrustedEntitySetCommandInput, cb: (err: any, data?: GetTrustedEntitySetCommandOutput) => void): void;
|
|
467
|
-
getTrustedEntitySet(args: GetTrustedEntitySetCommandInput, options:
|
|
473
|
+
getTrustedEntitySet(args: GetTrustedEntitySetCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetTrustedEntitySetCommandOutput) => void): void;
|
|
468
474
|
/**
|
|
469
475
|
* @see {@link GetUsageStatisticsCommand}
|
|
470
476
|
*/
|
|
471
|
-
getUsageStatistics(args: GetUsageStatisticsCommandInput, options?:
|
|
477
|
+
getUsageStatistics(args: GetUsageStatisticsCommandInput, options?: GuardDutyRequestOptions): Promise<GetUsageStatisticsCommandOutput>;
|
|
472
478
|
getUsageStatistics(args: GetUsageStatisticsCommandInput, cb: (err: any, data?: GetUsageStatisticsCommandOutput) => void): void;
|
|
473
|
-
getUsageStatistics(args: GetUsageStatisticsCommandInput, options:
|
|
479
|
+
getUsageStatistics(args: GetUsageStatisticsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: GetUsageStatisticsCommandOutput) => void): void;
|
|
474
480
|
/**
|
|
475
481
|
* @see {@link InviteMembersCommand}
|
|
476
482
|
*/
|
|
477
|
-
inviteMembers(args: InviteMembersCommandInput, options?:
|
|
483
|
+
inviteMembers(args: InviteMembersCommandInput, options?: GuardDutyRequestOptions): Promise<InviteMembersCommandOutput>;
|
|
478
484
|
inviteMembers(args: InviteMembersCommandInput, cb: (err: any, data?: InviteMembersCommandOutput) => void): void;
|
|
479
|
-
inviteMembers(args: InviteMembersCommandInput, options:
|
|
485
|
+
inviteMembers(args: InviteMembersCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: InviteMembersCommandOutput) => void): void;
|
|
480
486
|
/**
|
|
481
487
|
* @see {@link ListCoverageCommand}
|
|
482
488
|
*/
|
|
483
|
-
listCoverage(args: ListCoverageCommandInput, options?:
|
|
489
|
+
listCoverage(args: ListCoverageCommandInput, options?: GuardDutyRequestOptions): Promise<ListCoverageCommandOutput>;
|
|
484
490
|
listCoverage(args: ListCoverageCommandInput, cb: (err: any, data?: ListCoverageCommandOutput) => void): void;
|
|
485
|
-
listCoverage(args: ListCoverageCommandInput, options:
|
|
491
|
+
listCoverage(args: ListCoverageCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListCoverageCommandOutput) => void): void;
|
|
486
492
|
/**
|
|
487
493
|
* @see {@link ListCustomDetectionRuleAssociationsCommand}
|
|
488
494
|
*/
|
|
489
495
|
listCustomDetectionRuleAssociations(): Promise<ListCustomDetectionRuleAssociationsCommandOutput>;
|
|
490
|
-
listCustomDetectionRuleAssociations(args: ListCustomDetectionRuleAssociationsCommandInput, options?:
|
|
496
|
+
listCustomDetectionRuleAssociations(args: ListCustomDetectionRuleAssociationsCommandInput, options?: GuardDutyRequestOptions): Promise<ListCustomDetectionRuleAssociationsCommandOutput>;
|
|
491
497
|
listCustomDetectionRuleAssociations(args: ListCustomDetectionRuleAssociationsCommandInput, cb: (err: any, data?: ListCustomDetectionRuleAssociationsCommandOutput) => void): void;
|
|
492
|
-
listCustomDetectionRuleAssociations(args: ListCustomDetectionRuleAssociationsCommandInput, options:
|
|
498
|
+
listCustomDetectionRuleAssociations(args: ListCustomDetectionRuleAssociationsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListCustomDetectionRuleAssociationsCommandOutput) => void): void;
|
|
493
499
|
/**
|
|
494
500
|
* @see {@link ListCustomDetectionRuleOrgConfigurationsCommand}
|
|
495
501
|
*/
|
|
496
502
|
listCustomDetectionRuleOrgConfigurations(): Promise<ListCustomDetectionRuleOrgConfigurationsCommandOutput>;
|
|
497
|
-
listCustomDetectionRuleOrgConfigurations(args: ListCustomDetectionRuleOrgConfigurationsCommandInput, options?:
|
|
503
|
+
listCustomDetectionRuleOrgConfigurations(args: ListCustomDetectionRuleOrgConfigurationsCommandInput, options?: GuardDutyRequestOptions): Promise<ListCustomDetectionRuleOrgConfigurationsCommandOutput>;
|
|
498
504
|
listCustomDetectionRuleOrgConfigurations(args: ListCustomDetectionRuleOrgConfigurationsCommandInput, cb: (err: any, data?: ListCustomDetectionRuleOrgConfigurationsCommandOutput) => void): void;
|
|
499
|
-
listCustomDetectionRuleOrgConfigurations(args: ListCustomDetectionRuleOrgConfigurationsCommandInput, options:
|
|
505
|
+
listCustomDetectionRuleOrgConfigurations(args: ListCustomDetectionRuleOrgConfigurationsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListCustomDetectionRuleOrgConfigurationsCommandOutput) => void): void;
|
|
500
506
|
/**
|
|
501
507
|
* @see {@link ListCustomDetectionRulesCommand}
|
|
502
508
|
*/
|
|
503
509
|
listCustomDetectionRules(): Promise<ListCustomDetectionRulesCommandOutput>;
|
|
504
|
-
listCustomDetectionRules(args: ListCustomDetectionRulesCommandInput, options?:
|
|
510
|
+
listCustomDetectionRules(args: ListCustomDetectionRulesCommandInput, options?: GuardDutyRequestOptions): Promise<ListCustomDetectionRulesCommandOutput>;
|
|
505
511
|
listCustomDetectionRules(args: ListCustomDetectionRulesCommandInput, cb: (err: any, data?: ListCustomDetectionRulesCommandOutput) => void): void;
|
|
506
|
-
listCustomDetectionRules(args: ListCustomDetectionRulesCommandInput, options:
|
|
512
|
+
listCustomDetectionRules(args: ListCustomDetectionRulesCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListCustomDetectionRulesCommandOutput) => void): void;
|
|
507
513
|
/**
|
|
508
514
|
* @see {@link ListDetectorsCommand}
|
|
509
515
|
*/
|
|
510
516
|
listDetectors(): Promise<ListDetectorsCommandOutput>;
|
|
511
|
-
listDetectors(args: ListDetectorsCommandInput, options?:
|
|
517
|
+
listDetectors(args: ListDetectorsCommandInput, options?: GuardDutyRequestOptions): Promise<ListDetectorsCommandOutput>;
|
|
512
518
|
listDetectors(args: ListDetectorsCommandInput, cb: (err: any, data?: ListDetectorsCommandOutput) => void): void;
|
|
513
|
-
listDetectors(args: ListDetectorsCommandInput, options:
|
|
519
|
+
listDetectors(args: ListDetectorsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListDetectorsCommandOutput) => void): void;
|
|
514
520
|
/**
|
|
515
521
|
* @see {@link ListFiltersCommand}
|
|
516
522
|
*/
|
|
517
|
-
listFilters(args: ListFiltersCommandInput, options?:
|
|
523
|
+
listFilters(args: ListFiltersCommandInput, options?: GuardDutyRequestOptions): Promise<ListFiltersCommandOutput>;
|
|
518
524
|
listFilters(args: ListFiltersCommandInput, cb: (err: any, data?: ListFiltersCommandOutput) => void): void;
|
|
519
|
-
listFilters(args: ListFiltersCommandInput, options:
|
|
525
|
+
listFilters(args: ListFiltersCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListFiltersCommandOutput) => void): void;
|
|
520
526
|
/**
|
|
521
527
|
* @see {@link ListFindingsCommand}
|
|
522
528
|
*/
|
|
523
|
-
listFindings(args: ListFindingsCommandInput, options?:
|
|
529
|
+
listFindings(args: ListFindingsCommandInput, options?: GuardDutyRequestOptions): Promise<ListFindingsCommandOutput>;
|
|
524
530
|
listFindings(args: ListFindingsCommandInput, cb: (err: any, data?: ListFindingsCommandOutput) => void): void;
|
|
525
|
-
listFindings(args: ListFindingsCommandInput, options:
|
|
531
|
+
listFindings(args: ListFindingsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListFindingsCommandOutput) => void): void;
|
|
526
532
|
/**
|
|
527
533
|
* @see {@link ListInvestigationsCommand}
|
|
528
534
|
*/
|
|
529
|
-
listInvestigations(args: ListInvestigationsCommandInput, options?:
|
|
535
|
+
listInvestigations(args: ListInvestigationsCommandInput, options?: GuardDutyRequestOptions): Promise<ListInvestigationsCommandOutput>;
|
|
530
536
|
listInvestigations(args: ListInvestigationsCommandInput, cb: (err: any, data?: ListInvestigationsCommandOutput) => void): void;
|
|
531
|
-
listInvestigations(args: ListInvestigationsCommandInput, options:
|
|
537
|
+
listInvestigations(args: ListInvestigationsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListInvestigationsCommandOutput) => void): void;
|
|
532
538
|
/**
|
|
533
539
|
* @see {@link ListInvitationsCommand}
|
|
534
540
|
*/
|
|
535
541
|
listInvitations(): Promise<ListInvitationsCommandOutput>;
|
|
536
|
-
listInvitations(args: ListInvitationsCommandInput, options?:
|
|
542
|
+
listInvitations(args: ListInvitationsCommandInput, options?: GuardDutyRequestOptions): Promise<ListInvitationsCommandOutput>;
|
|
537
543
|
listInvitations(args: ListInvitationsCommandInput, cb: (err: any, data?: ListInvitationsCommandOutput) => void): void;
|
|
538
|
-
listInvitations(args: ListInvitationsCommandInput, options:
|
|
544
|
+
listInvitations(args: ListInvitationsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListInvitationsCommandOutput) => void): void;
|
|
539
545
|
/**
|
|
540
546
|
* @see {@link ListIPSetsCommand}
|
|
541
547
|
*/
|
|
542
|
-
listIPSets(args: ListIPSetsCommandInput, options?:
|
|
548
|
+
listIPSets(args: ListIPSetsCommandInput, options?: GuardDutyRequestOptions): Promise<ListIPSetsCommandOutput>;
|
|
543
549
|
listIPSets(args: ListIPSetsCommandInput, cb: (err: any, data?: ListIPSetsCommandOutput) => void): void;
|
|
544
|
-
listIPSets(args: ListIPSetsCommandInput, options:
|
|
550
|
+
listIPSets(args: ListIPSetsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListIPSetsCommandOutput) => void): void;
|
|
545
551
|
/**
|
|
546
552
|
* @see {@link ListMalwareProtectionPlansCommand}
|
|
547
553
|
*/
|
|
548
554
|
listMalwareProtectionPlans(): Promise<ListMalwareProtectionPlansCommandOutput>;
|
|
549
|
-
listMalwareProtectionPlans(args: ListMalwareProtectionPlansCommandInput, options?:
|
|
555
|
+
listMalwareProtectionPlans(args: ListMalwareProtectionPlansCommandInput, options?: GuardDutyRequestOptions): Promise<ListMalwareProtectionPlansCommandOutput>;
|
|
550
556
|
listMalwareProtectionPlans(args: ListMalwareProtectionPlansCommandInput, cb: (err: any, data?: ListMalwareProtectionPlansCommandOutput) => void): void;
|
|
551
|
-
listMalwareProtectionPlans(args: ListMalwareProtectionPlansCommandInput, options:
|
|
557
|
+
listMalwareProtectionPlans(args: ListMalwareProtectionPlansCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListMalwareProtectionPlansCommandOutput) => void): void;
|
|
552
558
|
/**
|
|
553
559
|
* @see {@link ListMalwareScansCommand}
|
|
554
560
|
*/
|
|
555
561
|
listMalwareScans(): Promise<ListMalwareScansCommandOutput>;
|
|
556
|
-
listMalwareScans(args: ListMalwareScansCommandInput, options?:
|
|
562
|
+
listMalwareScans(args: ListMalwareScansCommandInput, options?: GuardDutyRequestOptions): Promise<ListMalwareScansCommandOutput>;
|
|
557
563
|
listMalwareScans(args: ListMalwareScansCommandInput, cb: (err: any, data?: ListMalwareScansCommandOutput) => void): void;
|
|
558
|
-
listMalwareScans(args: ListMalwareScansCommandInput, options:
|
|
564
|
+
listMalwareScans(args: ListMalwareScansCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListMalwareScansCommandOutput) => void): void;
|
|
559
565
|
/**
|
|
560
566
|
* @see {@link ListMembersCommand}
|
|
561
567
|
*/
|
|
562
|
-
listMembers(args: ListMembersCommandInput, options?:
|
|
568
|
+
listMembers(args: ListMembersCommandInput, options?: GuardDutyRequestOptions): Promise<ListMembersCommandOutput>;
|
|
563
569
|
listMembers(args: ListMembersCommandInput, cb: (err: any, data?: ListMembersCommandOutput) => void): void;
|
|
564
|
-
listMembers(args: ListMembersCommandInput, options:
|
|
570
|
+
listMembers(args: ListMembersCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListMembersCommandOutput) => void): void;
|
|
565
571
|
/**
|
|
566
572
|
* @see {@link ListOrganizationAdminAccountsCommand}
|
|
567
573
|
*/
|
|
568
574
|
listOrganizationAdminAccounts(): Promise<ListOrganizationAdminAccountsCommandOutput>;
|
|
569
|
-
listOrganizationAdminAccounts(args: ListOrganizationAdminAccountsCommandInput, options?:
|
|
575
|
+
listOrganizationAdminAccounts(args: ListOrganizationAdminAccountsCommandInput, options?: GuardDutyRequestOptions): Promise<ListOrganizationAdminAccountsCommandOutput>;
|
|
570
576
|
listOrganizationAdminAccounts(args: ListOrganizationAdminAccountsCommandInput, cb: (err: any, data?: ListOrganizationAdminAccountsCommandOutput) => void): void;
|
|
571
|
-
listOrganizationAdminAccounts(args: ListOrganizationAdminAccountsCommandInput, options:
|
|
577
|
+
listOrganizationAdminAccounts(args: ListOrganizationAdminAccountsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListOrganizationAdminAccountsCommandOutput) => void): void;
|
|
572
578
|
/**
|
|
573
579
|
* @see {@link ListPublishingDestinationsCommand}
|
|
574
580
|
*/
|
|
575
|
-
listPublishingDestinations(args: ListPublishingDestinationsCommandInput, options?:
|
|
581
|
+
listPublishingDestinations(args: ListPublishingDestinationsCommandInput, options?: GuardDutyRequestOptions): Promise<ListPublishingDestinationsCommandOutput>;
|
|
576
582
|
listPublishingDestinations(args: ListPublishingDestinationsCommandInput, cb: (err: any, data?: ListPublishingDestinationsCommandOutput) => void): void;
|
|
577
|
-
listPublishingDestinations(args: ListPublishingDestinationsCommandInput, options:
|
|
583
|
+
listPublishingDestinations(args: ListPublishingDestinationsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListPublishingDestinationsCommandOutput) => void): void;
|
|
578
584
|
/**
|
|
579
585
|
* @see {@link ListTagsForResourceCommand}
|
|
580
586
|
*/
|
|
581
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options?:
|
|
587
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: GuardDutyRequestOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
582
588
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
583
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options:
|
|
589
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
584
590
|
/**
|
|
585
591
|
* @see {@link ListThreatEntitySetsCommand}
|
|
586
592
|
*/
|
|
587
|
-
listThreatEntitySets(args: ListThreatEntitySetsCommandInput, options?:
|
|
593
|
+
listThreatEntitySets(args: ListThreatEntitySetsCommandInput, options?: GuardDutyRequestOptions): Promise<ListThreatEntitySetsCommandOutput>;
|
|
588
594
|
listThreatEntitySets(args: ListThreatEntitySetsCommandInput, cb: (err: any, data?: ListThreatEntitySetsCommandOutput) => void): void;
|
|
589
|
-
listThreatEntitySets(args: ListThreatEntitySetsCommandInput, options:
|
|
595
|
+
listThreatEntitySets(args: ListThreatEntitySetsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListThreatEntitySetsCommandOutput) => void): void;
|
|
590
596
|
/**
|
|
591
597
|
* @see {@link ListThreatIntelSetsCommand}
|
|
592
598
|
*/
|
|
593
|
-
listThreatIntelSets(args: ListThreatIntelSetsCommandInput, options?:
|
|
599
|
+
listThreatIntelSets(args: ListThreatIntelSetsCommandInput, options?: GuardDutyRequestOptions): Promise<ListThreatIntelSetsCommandOutput>;
|
|
594
600
|
listThreatIntelSets(args: ListThreatIntelSetsCommandInput, cb: (err: any, data?: ListThreatIntelSetsCommandOutput) => void): void;
|
|
595
|
-
listThreatIntelSets(args: ListThreatIntelSetsCommandInput, options:
|
|
601
|
+
listThreatIntelSets(args: ListThreatIntelSetsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListThreatIntelSetsCommandOutput) => void): void;
|
|
596
602
|
/**
|
|
597
603
|
* @see {@link ListTrustedEntitySetsCommand}
|
|
598
604
|
*/
|
|
599
|
-
listTrustedEntitySets(args: ListTrustedEntitySetsCommandInput, options?:
|
|
605
|
+
listTrustedEntitySets(args: ListTrustedEntitySetsCommandInput, options?: GuardDutyRequestOptions): Promise<ListTrustedEntitySetsCommandOutput>;
|
|
600
606
|
listTrustedEntitySets(args: ListTrustedEntitySetsCommandInput, cb: (err: any, data?: ListTrustedEntitySetsCommandOutput) => void): void;
|
|
601
|
-
listTrustedEntitySets(args: ListTrustedEntitySetsCommandInput, options:
|
|
607
|
+
listTrustedEntitySets(args: ListTrustedEntitySetsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: ListTrustedEntitySetsCommandOutput) => void): void;
|
|
602
608
|
/**
|
|
603
609
|
* @see {@link SendObjectMalwareScanCommand}
|
|
604
610
|
*/
|
|
605
611
|
sendObjectMalwareScan(): Promise<SendObjectMalwareScanCommandOutput>;
|
|
606
|
-
sendObjectMalwareScan(args: SendObjectMalwareScanCommandInput, options?:
|
|
612
|
+
sendObjectMalwareScan(args: SendObjectMalwareScanCommandInput, options?: GuardDutyRequestOptions): Promise<SendObjectMalwareScanCommandOutput>;
|
|
607
613
|
sendObjectMalwareScan(args: SendObjectMalwareScanCommandInput, cb: (err: any, data?: SendObjectMalwareScanCommandOutput) => void): void;
|
|
608
|
-
sendObjectMalwareScan(args: SendObjectMalwareScanCommandInput, options:
|
|
614
|
+
sendObjectMalwareScan(args: SendObjectMalwareScanCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: SendObjectMalwareScanCommandOutput) => void): void;
|
|
609
615
|
/**
|
|
610
616
|
* @see {@link StartMalwareScanCommand}
|
|
611
617
|
*/
|
|
612
|
-
startMalwareScan(args: StartMalwareScanCommandInput, options?:
|
|
618
|
+
startMalwareScan(args: StartMalwareScanCommandInput, options?: GuardDutyRequestOptions): Promise<StartMalwareScanCommandOutput>;
|
|
613
619
|
startMalwareScan(args: StartMalwareScanCommandInput, cb: (err: any, data?: StartMalwareScanCommandOutput) => void): void;
|
|
614
|
-
startMalwareScan(args: StartMalwareScanCommandInput, options:
|
|
620
|
+
startMalwareScan(args: StartMalwareScanCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: StartMalwareScanCommandOutput) => void): void;
|
|
615
621
|
/**
|
|
616
622
|
* @see {@link StartMonitoringMembersCommand}
|
|
617
623
|
*/
|
|
618
|
-
startMonitoringMembers(args: StartMonitoringMembersCommandInput, options?:
|
|
624
|
+
startMonitoringMembers(args: StartMonitoringMembersCommandInput, options?: GuardDutyRequestOptions): Promise<StartMonitoringMembersCommandOutput>;
|
|
619
625
|
startMonitoringMembers(args: StartMonitoringMembersCommandInput, cb: (err: any, data?: StartMonitoringMembersCommandOutput) => void): void;
|
|
620
|
-
startMonitoringMembers(args: StartMonitoringMembersCommandInput, options:
|
|
626
|
+
startMonitoringMembers(args: StartMonitoringMembersCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: StartMonitoringMembersCommandOutput) => void): void;
|
|
621
627
|
/**
|
|
622
628
|
* @see {@link StopMonitoringMembersCommand}
|
|
623
629
|
*/
|
|
624
|
-
stopMonitoringMembers(args: StopMonitoringMembersCommandInput, options?:
|
|
630
|
+
stopMonitoringMembers(args: StopMonitoringMembersCommandInput, options?: GuardDutyRequestOptions): Promise<StopMonitoringMembersCommandOutput>;
|
|
625
631
|
stopMonitoringMembers(args: StopMonitoringMembersCommandInput, cb: (err: any, data?: StopMonitoringMembersCommandOutput) => void): void;
|
|
626
|
-
stopMonitoringMembers(args: StopMonitoringMembersCommandInput, options:
|
|
632
|
+
stopMonitoringMembers(args: StopMonitoringMembersCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: StopMonitoringMembersCommandOutput) => void): void;
|
|
627
633
|
/**
|
|
628
634
|
* @see {@link TagResourceCommand}
|
|
629
635
|
*/
|
|
630
|
-
tagResource(args: TagResourceCommandInput, options?:
|
|
636
|
+
tagResource(args: TagResourceCommandInput, options?: GuardDutyRequestOptions): Promise<TagResourceCommandOutput>;
|
|
631
637
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
632
|
-
tagResource(args: TagResourceCommandInput, options:
|
|
638
|
+
tagResource(args: TagResourceCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
633
639
|
/**
|
|
634
640
|
* @see {@link UnarchiveFindingsCommand}
|
|
635
641
|
*/
|
|
636
|
-
unarchiveFindings(args: UnarchiveFindingsCommandInput, options?:
|
|
642
|
+
unarchiveFindings(args: UnarchiveFindingsCommandInput, options?: GuardDutyRequestOptions): Promise<UnarchiveFindingsCommandOutput>;
|
|
637
643
|
unarchiveFindings(args: UnarchiveFindingsCommandInput, cb: (err: any, data?: UnarchiveFindingsCommandOutput) => void): void;
|
|
638
|
-
unarchiveFindings(args: UnarchiveFindingsCommandInput, options:
|
|
644
|
+
unarchiveFindings(args: UnarchiveFindingsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: UnarchiveFindingsCommandOutput) => void): void;
|
|
639
645
|
/**
|
|
640
646
|
* @see {@link UntagResourceCommand}
|
|
641
647
|
*/
|
|
642
|
-
untagResource(args: UntagResourceCommandInput, options?:
|
|
648
|
+
untagResource(args: UntagResourceCommandInput, options?: GuardDutyRequestOptions): Promise<UntagResourceCommandOutput>;
|
|
643
649
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
644
|
-
untagResource(args: UntagResourceCommandInput, options:
|
|
650
|
+
untagResource(args: UntagResourceCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
645
651
|
/**
|
|
646
652
|
* @see {@link UpdateCustomDetectionRuleAssociationCommand}
|
|
647
653
|
*/
|
|
648
|
-
updateCustomDetectionRuleAssociation(args: UpdateCustomDetectionRuleAssociationCommandInput, options?:
|
|
654
|
+
updateCustomDetectionRuleAssociation(args: UpdateCustomDetectionRuleAssociationCommandInput, options?: GuardDutyRequestOptions): Promise<UpdateCustomDetectionRuleAssociationCommandOutput>;
|
|
649
655
|
updateCustomDetectionRuleAssociation(args: UpdateCustomDetectionRuleAssociationCommandInput, cb: (err: any, data?: UpdateCustomDetectionRuleAssociationCommandOutput) => void): void;
|
|
650
|
-
updateCustomDetectionRuleAssociation(args: UpdateCustomDetectionRuleAssociationCommandInput, options:
|
|
656
|
+
updateCustomDetectionRuleAssociation(args: UpdateCustomDetectionRuleAssociationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: UpdateCustomDetectionRuleAssociationCommandOutput) => void): void;
|
|
651
657
|
/**
|
|
652
658
|
* @see {@link UpdateCustomDetectionRuleOrgConfigurationCommand}
|
|
653
659
|
*/
|
|
654
|
-
updateCustomDetectionRuleOrgConfiguration(args: UpdateCustomDetectionRuleOrgConfigurationCommandInput, options?:
|
|
660
|
+
updateCustomDetectionRuleOrgConfiguration(args: UpdateCustomDetectionRuleOrgConfigurationCommandInput, options?: GuardDutyRequestOptions): Promise<UpdateCustomDetectionRuleOrgConfigurationCommandOutput>;
|
|
655
661
|
updateCustomDetectionRuleOrgConfiguration(args: UpdateCustomDetectionRuleOrgConfigurationCommandInput, cb: (err: any, data?: UpdateCustomDetectionRuleOrgConfigurationCommandOutput) => void): void;
|
|
656
|
-
updateCustomDetectionRuleOrgConfiguration(args: UpdateCustomDetectionRuleOrgConfigurationCommandInput, options:
|
|
662
|
+
updateCustomDetectionRuleOrgConfiguration(args: UpdateCustomDetectionRuleOrgConfigurationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: UpdateCustomDetectionRuleOrgConfigurationCommandOutput) => void): void;
|
|
657
663
|
/**
|
|
658
664
|
* @see {@link UpdateDetectorCommand}
|
|
659
665
|
*/
|
|
660
|
-
updateDetector(args: UpdateDetectorCommandInput, options?:
|
|
666
|
+
updateDetector(args: UpdateDetectorCommandInput, options?: GuardDutyRequestOptions): Promise<UpdateDetectorCommandOutput>;
|
|
661
667
|
updateDetector(args: UpdateDetectorCommandInput, cb: (err: any, data?: UpdateDetectorCommandOutput) => void): void;
|
|
662
|
-
updateDetector(args: UpdateDetectorCommandInput, options:
|
|
668
|
+
updateDetector(args: UpdateDetectorCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: UpdateDetectorCommandOutput) => void): void;
|
|
663
669
|
/**
|
|
664
670
|
* @see {@link UpdateFilterCommand}
|
|
665
671
|
*/
|
|
666
|
-
updateFilter(args: UpdateFilterCommandInput, options?:
|
|
672
|
+
updateFilter(args: UpdateFilterCommandInput, options?: GuardDutyRequestOptions): Promise<UpdateFilterCommandOutput>;
|
|
667
673
|
updateFilter(args: UpdateFilterCommandInput, cb: (err: any, data?: UpdateFilterCommandOutput) => void): void;
|
|
668
|
-
updateFilter(args: UpdateFilterCommandInput, options:
|
|
674
|
+
updateFilter(args: UpdateFilterCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: UpdateFilterCommandOutput) => void): void;
|
|
669
675
|
/**
|
|
670
676
|
* @see {@link UpdateFindingsFeedbackCommand}
|
|
671
677
|
*/
|
|
672
|
-
updateFindingsFeedback(args: UpdateFindingsFeedbackCommandInput, options?:
|
|
678
|
+
updateFindingsFeedback(args: UpdateFindingsFeedbackCommandInput, options?: GuardDutyRequestOptions): Promise<UpdateFindingsFeedbackCommandOutput>;
|
|
673
679
|
updateFindingsFeedback(args: UpdateFindingsFeedbackCommandInput, cb: (err: any, data?: UpdateFindingsFeedbackCommandOutput) => void): void;
|
|
674
|
-
updateFindingsFeedback(args: UpdateFindingsFeedbackCommandInput, options:
|
|
680
|
+
updateFindingsFeedback(args: UpdateFindingsFeedbackCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: UpdateFindingsFeedbackCommandOutput) => void): void;
|
|
675
681
|
/**
|
|
676
682
|
* @see {@link UpdateIPSetCommand}
|
|
677
683
|
*/
|
|
678
|
-
updateIPSet(args: UpdateIPSetCommandInput, options?:
|
|
684
|
+
updateIPSet(args: UpdateIPSetCommandInput, options?: GuardDutyRequestOptions): Promise<UpdateIPSetCommandOutput>;
|
|
679
685
|
updateIPSet(args: UpdateIPSetCommandInput, cb: (err: any, data?: UpdateIPSetCommandOutput) => void): void;
|
|
680
|
-
updateIPSet(args: UpdateIPSetCommandInput, options:
|
|
686
|
+
updateIPSet(args: UpdateIPSetCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: UpdateIPSetCommandOutput) => void): void;
|
|
681
687
|
/**
|
|
682
688
|
* @see {@link UpdateMalwareProtectionPlanCommand}
|
|
683
689
|
*/
|
|
684
|
-
updateMalwareProtectionPlan(args: UpdateMalwareProtectionPlanCommandInput, options?:
|
|
690
|
+
updateMalwareProtectionPlan(args: UpdateMalwareProtectionPlanCommandInput, options?: GuardDutyRequestOptions): Promise<UpdateMalwareProtectionPlanCommandOutput>;
|
|
685
691
|
updateMalwareProtectionPlan(args: UpdateMalwareProtectionPlanCommandInput, cb: (err: any, data?: UpdateMalwareProtectionPlanCommandOutput) => void): void;
|
|
686
|
-
updateMalwareProtectionPlan(args: UpdateMalwareProtectionPlanCommandInput, options:
|
|
692
|
+
updateMalwareProtectionPlan(args: UpdateMalwareProtectionPlanCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: UpdateMalwareProtectionPlanCommandOutput) => void): void;
|
|
687
693
|
/**
|
|
688
694
|
* @see {@link UpdateMalwareScanSettingsCommand}
|
|
689
695
|
*/
|
|
690
|
-
updateMalwareScanSettings(args: UpdateMalwareScanSettingsCommandInput, options?:
|
|
696
|
+
updateMalwareScanSettings(args: UpdateMalwareScanSettingsCommandInput, options?: GuardDutyRequestOptions): Promise<UpdateMalwareScanSettingsCommandOutput>;
|
|
691
697
|
updateMalwareScanSettings(args: UpdateMalwareScanSettingsCommandInput, cb: (err: any, data?: UpdateMalwareScanSettingsCommandOutput) => void): void;
|
|
692
|
-
updateMalwareScanSettings(args: UpdateMalwareScanSettingsCommandInput, options:
|
|
698
|
+
updateMalwareScanSettings(args: UpdateMalwareScanSettingsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: UpdateMalwareScanSettingsCommandOutput) => void): void;
|
|
693
699
|
/**
|
|
694
700
|
* @see {@link UpdateMemberDetectorsCommand}
|
|
695
701
|
*/
|
|
696
|
-
updateMemberDetectors(args: UpdateMemberDetectorsCommandInput, options?:
|
|
702
|
+
updateMemberDetectors(args: UpdateMemberDetectorsCommandInput, options?: GuardDutyRequestOptions): Promise<UpdateMemberDetectorsCommandOutput>;
|
|
697
703
|
updateMemberDetectors(args: UpdateMemberDetectorsCommandInput, cb: (err: any, data?: UpdateMemberDetectorsCommandOutput) => void): void;
|
|
698
|
-
updateMemberDetectors(args: UpdateMemberDetectorsCommandInput, options:
|
|
704
|
+
updateMemberDetectors(args: UpdateMemberDetectorsCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: UpdateMemberDetectorsCommandOutput) => void): void;
|
|
699
705
|
/**
|
|
700
706
|
* @see {@link UpdateOrganizationConfigurationCommand}
|
|
701
707
|
*/
|
|
702
|
-
updateOrganizationConfiguration(args: UpdateOrganizationConfigurationCommandInput, options?:
|
|
708
|
+
updateOrganizationConfiguration(args: UpdateOrganizationConfigurationCommandInput, options?: GuardDutyRequestOptions): Promise<UpdateOrganizationConfigurationCommandOutput>;
|
|
703
709
|
updateOrganizationConfiguration(args: UpdateOrganizationConfigurationCommandInput, cb: (err: any, data?: UpdateOrganizationConfigurationCommandOutput) => void): void;
|
|
704
|
-
updateOrganizationConfiguration(args: UpdateOrganizationConfigurationCommandInput, options:
|
|
710
|
+
updateOrganizationConfiguration(args: UpdateOrganizationConfigurationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: UpdateOrganizationConfigurationCommandOutput) => void): void;
|
|
705
711
|
/**
|
|
706
712
|
* @see {@link UpdatePublishingDestinationCommand}
|
|
707
713
|
*/
|
|
708
|
-
updatePublishingDestination(args: UpdatePublishingDestinationCommandInput, options?:
|
|
714
|
+
updatePublishingDestination(args: UpdatePublishingDestinationCommandInput, options?: GuardDutyRequestOptions): Promise<UpdatePublishingDestinationCommandOutput>;
|
|
709
715
|
updatePublishingDestination(args: UpdatePublishingDestinationCommandInput, cb: (err: any, data?: UpdatePublishingDestinationCommandOutput) => void): void;
|
|
710
|
-
updatePublishingDestination(args: UpdatePublishingDestinationCommandInput, options:
|
|
716
|
+
updatePublishingDestination(args: UpdatePublishingDestinationCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: UpdatePublishingDestinationCommandOutput) => void): void;
|
|
711
717
|
/**
|
|
712
718
|
* @see {@link UpdateThreatEntitySetCommand}
|
|
713
719
|
*/
|
|
714
|
-
updateThreatEntitySet(args: UpdateThreatEntitySetCommandInput, options?:
|
|
720
|
+
updateThreatEntitySet(args: UpdateThreatEntitySetCommandInput, options?: GuardDutyRequestOptions): Promise<UpdateThreatEntitySetCommandOutput>;
|
|
715
721
|
updateThreatEntitySet(args: UpdateThreatEntitySetCommandInput, cb: (err: any, data?: UpdateThreatEntitySetCommandOutput) => void): void;
|
|
716
|
-
updateThreatEntitySet(args: UpdateThreatEntitySetCommandInput, options:
|
|
722
|
+
updateThreatEntitySet(args: UpdateThreatEntitySetCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: UpdateThreatEntitySetCommandOutput) => void): void;
|
|
717
723
|
/**
|
|
718
724
|
* @see {@link UpdateThreatIntelSetCommand}
|
|
719
725
|
*/
|
|
720
|
-
updateThreatIntelSet(args: UpdateThreatIntelSetCommandInput, options?:
|
|
726
|
+
updateThreatIntelSet(args: UpdateThreatIntelSetCommandInput, options?: GuardDutyRequestOptions): Promise<UpdateThreatIntelSetCommandOutput>;
|
|
721
727
|
updateThreatIntelSet(args: UpdateThreatIntelSetCommandInput, cb: (err: any, data?: UpdateThreatIntelSetCommandOutput) => void): void;
|
|
722
|
-
updateThreatIntelSet(args: UpdateThreatIntelSetCommandInput, options:
|
|
728
|
+
updateThreatIntelSet(args: UpdateThreatIntelSetCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: UpdateThreatIntelSetCommandOutput) => void): void;
|
|
723
729
|
/**
|
|
724
730
|
* @see {@link UpdateTrustedEntitySetCommand}
|
|
725
731
|
*/
|
|
726
|
-
updateTrustedEntitySet(args: UpdateTrustedEntitySetCommandInput, options?:
|
|
732
|
+
updateTrustedEntitySet(args: UpdateTrustedEntitySetCommandInput, options?: GuardDutyRequestOptions): Promise<UpdateTrustedEntitySetCommandOutput>;
|
|
727
733
|
updateTrustedEntitySet(args: UpdateTrustedEntitySetCommandInput, cb: (err: any, data?: UpdateTrustedEntitySetCommandOutput) => void): void;
|
|
728
|
-
updateTrustedEntitySet(args: UpdateTrustedEntitySetCommandInput, options:
|
|
734
|
+
updateTrustedEntitySet(args: UpdateTrustedEntitySetCommandInput, options: GuardDutyRequestOptions, cb: (err: any, data?: UpdateTrustedEntitySetCommandOutput) => void): void;
|
|
729
735
|
/**
|
|
730
736
|
* @see {@link DescribeMalwareScansCommand}
|
|
731
737
|
* @param args - command input.
|