@aws-sdk/client-guardduty 3.322.0 → 3.326.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-types/commands/AcceptAdministratorInvitationCommand.d.ts +4 -0
- package/dist-types/commands/AcceptInvitationCommand.d.ts +4 -0
- package/dist-types/commands/ArchiveFindingsCommand.d.ts +4 -0
- package/dist-types/commands/CreateDetectorCommand.d.ts +17 -0
- package/dist-types/commands/CreateFilterCommand.d.ts +6 -0
- package/dist-types/commands/CreateIPSetCommand.d.ts +6 -0
- package/dist-types/commands/CreateMembersCommand.d.ts +11 -0
- package/dist-types/commands/CreatePublishingDestinationCommand.d.ts +6 -0
- package/dist-types/commands/CreateSampleFindingsCommand.d.ts +4 -0
- package/dist-types/commands/CreateThreatIntelSetCommand.d.ts +6 -0
- package/dist-types/commands/DeclineInvitationsCommand.d.ts +11 -0
- package/dist-types/commands/DeleteDetectorCommand.d.ts +4 -0
- package/dist-types/commands/DeleteFilterCommand.d.ts +4 -0
- package/dist-types/commands/DeleteIPSetCommand.d.ts +4 -0
- package/dist-types/commands/DeleteInvitationsCommand.d.ts +11 -0
- package/dist-types/commands/DeleteMembersCommand.d.ts +11 -0
- package/dist-types/commands/DeletePublishingDestinationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteThreatIntelSetCommand.d.ts +4 -0
- package/dist-types/commands/DescribeMalwareScansCommand.d.ts +42 -0
- package/dist-types/commands/DescribeOrganizationConfigurationCommand.d.ts +38 -0
- package/dist-types/commands/DescribePublishingDestinationCommand.d.ts +13 -0
- package/dist-types/commands/DisableOrganizationAdminAccountCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateFromAdministratorAccountCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateFromMasterAccountCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateMembersCommand.d.ts +11 -0
- package/dist-types/commands/EnableOrganizationAdminAccountCommand.d.ts +4 -0
- package/dist-types/commands/GetAdministratorAccountCommand.d.ts +11 -0
- package/dist-types/commands/GetCoverageStatisticsCommand.d.ts +13 -0
- package/dist-types/commands/GetDetectorCommand.d.ts +55 -0
- package/dist-types/commands/GetFilterCommand.d.ts +38 -0
- package/dist-types/commands/GetFindingsCommand.d.ts +673 -0
- package/dist-types/commands/GetFindingsStatisticsCommand.d.ts +10 -0
- package/dist-types/commands/GetIPSetCommand.d.ts +12 -0
- package/dist-types/commands/GetInvitationsCountCommand.d.ts +6 -0
- package/dist-types/commands/GetMalwareScanSettingsCommand.d.ts +28 -0
- package/dist-types/commands/GetMasterAccountCommand.d.ts +11 -0
- package/dist-types/commands/GetMemberDetectorsCommand.d.ts +58 -0
- package/dist-types/commands/GetMembersCommand.d.ts +23 -0
- package/dist-types/commands/GetRemainingFreeTrialDaysCommand.d.ts +44 -0
- package/dist-types/commands/GetThreatIntelSetCommand.d.ts +12 -0
- package/dist-types/commands/GetUsageStatisticsCommand.d.ts +53 -0
- package/dist-types/commands/InviteMembersCommand.d.ts +11 -0
- package/dist-types/commands/ListCoverageCommand.d.ts +28 -0
- package/dist-types/commands/ListDetectorsCommand.d.ts +9 -0
- package/dist-types/commands/ListFiltersCommand.d.ts +9 -0
- package/dist-types/commands/ListFindingsCommand.d.ts +9 -0
- package/dist-types/commands/ListIPSetsCommand.d.ts +9 -0
- package/dist-types/commands/ListInvitationsCommand.d.ts +14 -0
- package/dist-types/commands/ListMembersCommand.d.ts +18 -0
- package/dist-types/commands/ListOrganizationAdminAccountsCommand.d.ts +12 -0
- package/dist-types/commands/ListPublishingDestinationsCommand.d.ts +13 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/ListThreatIntelSetsCommand.d.ts +9 -0
- package/dist-types/commands/StartMalwareScanCommand.d.ts +6 -0
- package/dist-types/commands/StartMonitoringMembersCommand.d.ts +11 -0
- package/dist-types/commands/StopMonitoringMembersCommand.d.ts +11 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UnarchiveFindingsCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateDetectorCommand.d.ts +4 -0
- package/dist-types/commands/UpdateFilterCommand.d.ts +6 -0
- package/dist-types/commands/UpdateFindingsFeedbackCommand.d.ts +4 -0
- package/dist-types/commands/UpdateIPSetCommand.d.ts +4 -0
- package/dist-types/commands/UpdateMalwareScanSettingsCommand.d.ts +4 -0
- package/dist-types/commands/UpdateMemberDetectorsCommand.d.ts +11 -0
- package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/UpdatePublishingDestinationCommand.d.ts +4 -0
- package/dist-types/commands/UpdateThreatIntelSetCommand.d.ts +4 -0
- package/package.json +16 -16
|
@@ -52,6 +52,17 @@ export interface GetCoverageStatisticsCommandOutput extends GetCoverageStatistic
|
|
|
52
52
|
* };
|
|
53
53
|
* const command = new GetCoverageStatisticsCommand(input);
|
|
54
54
|
* const response = await client.send(command);
|
|
55
|
+
* // { // GetCoverageStatisticsResponse
|
|
56
|
+
* // CoverageStatistics: { // CoverageStatistics
|
|
57
|
+
* // CountByResourceType: { // CountByResourceType
|
|
58
|
+
* // "<keys>": Number("long"),
|
|
59
|
+
* // },
|
|
60
|
+
* // CountByCoverageStatus: { // CountByCoverageStatus
|
|
61
|
+
* // "<keys>": Number("long"),
|
|
62
|
+
* // },
|
|
63
|
+
* // },
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
55
66
|
* ```
|
|
56
67
|
*
|
|
57
68
|
* @param GetCoverageStatisticsCommandInput - {@link GetCoverageStatisticsCommandInput}
|
|
@@ -66,6 +77,8 @@ export interface GetCoverageStatisticsCommandOutput extends GetCoverageStatistic
|
|
|
66
77
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
67
78
|
* <p>An internal server error exception object.</p>
|
|
68
79
|
*
|
|
80
|
+
* @throws {@link GuardDutyServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
69
82
|
*
|
|
70
83
|
*/
|
|
71
84
|
export declare class GetCoverageStatisticsCommand extends $Command<GetCoverageStatisticsCommandInput, GetCoverageStatisticsCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -34,6 +34,59 @@ export interface GetDetectorCommandOutput extends GetDetectorResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetDetectorCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetDetectorResponse
|
|
38
|
+
* // CreatedAt: "STRING_VALUE",
|
|
39
|
+
* // FindingPublishingFrequency: "FIFTEEN_MINUTES" || "ONE_HOUR" || "SIX_HOURS",
|
|
40
|
+
* // ServiceRole: "STRING_VALUE", // required
|
|
41
|
+
* // Status: "ENABLED" || "DISABLED", // required
|
|
42
|
+
* // UpdatedAt: "STRING_VALUE",
|
|
43
|
+
* // DataSources: { // DataSourceConfigurationsResult
|
|
44
|
+
* // CloudTrail: { // CloudTrailConfigurationResult
|
|
45
|
+
* // Status: "ENABLED" || "DISABLED", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // DNSLogs: { // DNSLogsConfigurationResult
|
|
48
|
+
* // Status: "ENABLED" || "DISABLED", // required
|
|
49
|
+
* // },
|
|
50
|
+
* // FlowLogs: { // FlowLogsConfigurationResult
|
|
51
|
+
* // Status: "ENABLED" || "DISABLED", // required
|
|
52
|
+
* // },
|
|
53
|
+
* // S3Logs: { // S3LogsConfigurationResult
|
|
54
|
+
* // Status: "ENABLED" || "DISABLED", // required
|
|
55
|
+
* // },
|
|
56
|
+
* // Kubernetes: { // KubernetesConfigurationResult
|
|
57
|
+
* // AuditLogs: { // KubernetesAuditLogsConfigurationResult
|
|
58
|
+
* // Status: "ENABLED" || "DISABLED", // required
|
|
59
|
+
* // },
|
|
60
|
+
* // },
|
|
61
|
+
* // MalwareProtection: { // MalwareProtectionConfigurationResult
|
|
62
|
+
* // ScanEc2InstanceWithFindings: { // ScanEc2InstanceWithFindingsResult
|
|
63
|
+
* // EbsVolumes: { // EbsVolumesResult
|
|
64
|
+
* // Status: "ENABLED" || "DISABLED",
|
|
65
|
+
* // Reason: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // },
|
|
68
|
+
* // ServiceRole: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // },
|
|
71
|
+
* // Tags: { // TagMap
|
|
72
|
+
* // "<keys>": "STRING_VALUE",
|
|
73
|
+
* // },
|
|
74
|
+
* // Features: [ // DetectorFeatureConfigurationsResults
|
|
75
|
+
* // { // DetectorFeatureConfigurationResult
|
|
76
|
+
* // Name: "FLOW_LOGS" || "CLOUD_TRAIL" || "DNS_LOGS" || "S3_DATA_EVENTS" || "EKS_AUDIT_LOGS" || "EBS_MALWARE_PROTECTION" || "RDS_LOGIN_EVENTS" || "EKS_RUNTIME_MONITORING" || "LAMBDA_NETWORK_LOGS",
|
|
77
|
+
* // Status: "ENABLED" || "DISABLED",
|
|
78
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
79
|
+
* // AdditionalConfiguration: [ // DetectorAdditionalConfigurationResults
|
|
80
|
+
* // { // DetectorAdditionalConfigurationResult
|
|
81
|
+
* // Name: "EKS_ADDON_MANAGEMENT",
|
|
82
|
+
* // Status: "ENABLED" || "DISABLED",
|
|
83
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
84
|
+
* // },
|
|
85
|
+
* // ],
|
|
86
|
+
* // },
|
|
87
|
+
* // ],
|
|
88
|
+
* // };
|
|
89
|
+
*
|
|
37
90
|
* ```
|
|
38
91
|
*
|
|
39
92
|
* @param GetDetectorCommandInput - {@link GetDetectorCommandInput}
|
|
@@ -48,6 +101,8 @@ export interface GetDetectorCommandOutput extends GetDetectorResponse, __Metadat
|
|
|
48
101
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
49
102
|
* <p>An internal server error exception object.</p>
|
|
50
103
|
*
|
|
104
|
+
* @throws {@link GuardDutyServiceException}
|
|
105
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
51
106
|
*
|
|
52
107
|
*/
|
|
53
108
|
export declare class GetDetectorCommand extends $Command<GetDetectorCommandInput, GetDetectorCommandOutput, GuardDutyClientResolvedConfig> {
|
|
@@ -32,6 +32,42 @@ export interface GetFilterCommandOutput extends GetFilterResponse, __MetadataBea
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetFilterCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetFilterResponse
|
|
36
|
+
* // Name: "STRING_VALUE", // required
|
|
37
|
+
* // Description: "STRING_VALUE",
|
|
38
|
+
* // Action: "NOOP" || "ARCHIVE", // required
|
|
39
|
+
* // Rank: Number("int"),
|
|
40
|
+
* // FindingCriteria: { // FindingCriteria
|
|
41
|
+
* // Criterion: { // Criterion
|
|
42
|
+
* // "<keys>": { // Condition
|
|
43
|
+
* // Eq: [ // Eq
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // Neq: [ // Neq
|
|
47
|
+
* // "STRING_VALUE",
|
|
48
|
+
* // ],
|
|
49
|
+
* // Gt: Number("int"),
|
|
50
|
+
* // Gte: Number("int"),
|
|
51
|
+
* // Lt: Number("int"),
|
|
52
|
+
* // Lte: Number("int"),
|
|
53
|
+
* // Equals: [ // Equals
|
|
54
|
+
* // "STRING_VALUE",
|
|
55
|
+
* // ],
|
|
56
|
+
* // NotEquals: [ // NotEquals
|
|
57
|
+
* // "STRING_VALUE",
|
|
58
|
+
* // ],
|
|
59
|
+
* // GreaterThan: Number("long"),
|
|
60
|
+
* // GreaterThanOrEqual: Number("long"),
|
|
61
|
+
* // LessThan: Number("long"),
|
|
62
|
+
* // LessThanOrEqual: Number("long"),
|
|
63
|
+
* // },
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // Tags: { // TagMap
|
|
67
|
+
* // "<keys>": "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
35
71
|
* ```
|
|
36
72
|
*
|
|
37
73
|
* @param GetFilterCommandInput - {@link GetFilterCommandInput}
|
|
@@ -46,6 +82,8 @@ export interface GetFilterCommandOutput extends GetFilterResponse, __MetadataBea
|
|
|
46
82
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
47
83
|
* <p>An internal server error exception object.</p>
|
|
48
84
|
*
|
|
85
|
+
* @throws {@link GuardDutyServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from GuardDuty service.</p>
|
|
49
87
|
*
|
|
50
88
|
*/
|
|
51
89
|
export declare class GetFilterCommand extends $Command<GetFilterCommandInput, GetFilterCommandOutput, GuardDutyClientResolvedConfig> {
|