@aws-sdk/client-macie2 3.592.0 → 3.598.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/README.md +16 -0
- package/dist-cjs/index.js +173 -6
- package/dist-es/Macie2.js +4 -0
- package/dist-es/commands/BatchUpdateAutomatedDiscoveryAccountsCommand.js +24 -0
- package/dist-es/commands/ListAutomatedDiscoveryAccountsCommand.js +24 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +18 -6
- package/dist-es/models/models_1.js +6 -0
- package/dist-es/pagination/ListAutomatedDiscoveryAccountsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +101 -0
- package/dist-types/Macie2.d.ts +16 -0
- package/dist-types/Macie2Client.d.ts +4 -2
- package/dist-types/commands/BatchUpdateAutomatedDiscoveryAccountsCommand.d.ts +85 -0
- package/dist-types/commands/DescribeBucketsCommand.d.ts +1 -0
- package/dist-types/commands/GetAutomatedDiscoveryConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/ListAutomatedDiscoveryAccountsCommand.d.ts +85 -0
- package/dist-types/commands/ListClassificationJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListClassificationScopesCommand.d.ts +1 -1
- package/dist-types/commands/ListCustomDataIdentifiersCommand.d.ts +1 -1
- package/dist-types/commands/ListFindingsCommand.d.ts +1 -1
- package/dist-types/commands/ListInvitationsCommand.d.ts +1 -1
- package/dist-types/commands/ListResourceProfileArtifactsCommand.d.ts +1 -1
- package/dist-types/commands/PutClassificationExportConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/SearchResourcesCommand.d.ts +3 -2
- package/dist-types/commands/TestCustomDataIdentifierCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAutomatedDiscoveryConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +175 -193
- package/dist-types/models/models_1.d.ts +196 -5
- package/dist-types/pagination/ListAutomatedDiscoveryAccountsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/Macie2.d.ts +42 -0
- package/dist-types/ts3.4/Macie2Client.d.ts +12 -0
- package/dist-types/ts3.4/commands/BatchUpdateAutomatedDiscoveryAccountsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListAutomatedDiscoveryAccountsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListClassificationJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListClassificationScopesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListCustomDataIdentifiersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +51 -47
- package/dist-types/ts3.4/models/models_1.d.ts +59 -0
- package/dist-types/ts3.4/pagination/ListAutomatedDiscoveryAccountsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +38 -38
|
@@ -17,6 +17,30 @@ export interface AllowListSummary {
|
|
|
17
17
|
name?: string;
|
|
18
18
|
updatedAt?: Date;
|
|
19
19
|
}
|
|
20
|
+
export declare const AutomatedDiscoveryAccountStatus: {
|
|
21
|
+
readonly DISABLED: "DISABLED";
|
|
22
|
+
readonly ENABLED: "ENABLED";
|
|
23
|
+
};
|
|
24
|
+
export type AutomatedDiscoveryAccountStatus =
|
|
25
|
+
(typeof AutomatedDiscoveryAccountStatus)[keyof typeof AutomatedDiscoveryAccountStatus];
|
|
26
|
+
export interface AutomatedDiscoveryAccount {
|
|
27
|
+
accountId?: string;
|
|
28
|
+
status?: AutomatedDiscoveryAccountStatus;
|
|
29
|
+
}
|
|
30
|
+
export interface AutomatedDiscoveryAccountUpdate {
|
|
31
|
+
accountId?: string;
|
|
32
|
+
status?: AutomatedDiscoveryAccountStatus;
|
|
33
|
+
}
|
|
34
|
+
export declare const AutomatedDiscoveryAccountUpdateErrorCode: {
|
|
35
|
+
readonly ACCOUNT_NOT_FOUND: "ACCOUNT_NOT_FOUND";
|
|
36
|
+
readonly ACCOUNT_PAUSED: "ACCOUNT_PAUSED";
|
|
37
|
+
};
|
|
38
|
+
export type AutomatedDiscoveryAccountUpdateErrorCode =
|
|
39
|
+
(typeof AutomatedDiscoveryAccountUpdateErrorCode)[keyof typeof AutomatedDiscoveryAccountUpdateErrorCode];
|
|
40
|
+
export interface AutomatedDiscoveryAccountUpdateError {
|
|
41
|
+
accountId?: string;
|
|
42
|
+
errorCode?: AutomatedDiscoveryAccountUpdateErrorCode;
|
|
43
|
+
}
|
|
20
44
|
export interface BatchGetCustomDataIdentifierSummary {
|
|
21
45
|
arn?: string;
|
|
22
46
|
createdAt?: Date;
|
|
@@ -32,6 +56,12 @@ export declare const AllowsUnencryptedObjectUploads: {
|
|
|
32
56
|
};
|
|
33
57
|
export type AllowsUnencryptedObjectUploads =
|
|
34
58
|
(typeof AllowsUnencryptedObjectUploads)[keyof typeof AllowsUnencryptedObjectUploads];
|
|
59
|
+
export declare const AutomatedDiscoveryMonitoringStatus: {
|
|
60
|
+
readonly MONITORED: "MONITORED";
|
|
61
|
+
readonly NOT_MONITORED: "NOT_MONITORED";
|
|
62
|
+
};
|
|
63
|
+
export type AutomatedDiscoveryMonitoringStatus =
|
|
64
|
+
(typeof AutomatedDiscoveryMonitoringStatus)[keyof typeof AutomatedDiscoveryMonitoringStatus];
|
|
35
65
|
export declare const BucketMetadataErrorCode: {
|
|
36
66
|
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
37
67
|
};
|
|
@@ -136,6 +166,7 @@ export interface ObjectLevelStatistics {
|
|
|
136
166
|
export interface BucketMetadata {
|
|
137
167
|
accountId?: string;
|
|
138
168
|
allowsUnencryptedObjectUploads?: AllowsUnencryptedObjectUploads;
|
|
169
|
+
automatedDiscoveryMonitoringStatus?: AutomatedDiscoveryMonitoringStatus;
|
|
139
170
|
bucketArn?: string;
|
|
140
171
|
bucketCreatedAt?: Date;
|
|
141
172
|
bucketName?: string;
|
|
@@ -666,6 +697,7 @@ export interface ManagedDataIdentifierSummary {
|
|
|
666
697
|
}
|
|
667
698
|
export interface MatchingBucket {
|
|
668
699
|
accountId?: string;
|
|
700
|
+
automatedDiscoveryMonitoringStatus?: AutomatedDiscoveryMonitoringStatus;
|
|
669
701
|
bucketName?: string;
|
|
670
702
|
classifiableObjectCount?: number;
|
|
671
703
|
classifiableSizeInBytes?: number;
|
|
@@ -708,6 +740,7 @@ export type SearchResourcesComparator =
|
|
|
708
740
|
(typeof SearchResourcesComparator)[keyof typeof SearchResourcesComparator];
|
|
709
741
|
export declare const SearchResourcesSimpleCriterionKey: {
|
|
710
742
|
readonly ACCOUNT_ID: "ACCOUNT_ID";
|
|
743
|
+
readonly AUTOMATED_DISCOVERY_MONITORING_STATUS: "AUTOMATED_DISCOVERY_MONITORING_STATUS";
|
|
711
744
|
readonly S3_BUCKET_EFFECTIVE_PERMISSION: "S3_BUCKET_EFFECTIVE_PERMISSION";
|
|
712
745
|
readonly S3_BUCKET_NAME: "S3_BUCKET_NAME";
|
|
713
746
|
readonly S3_BUCKET_SHARED_ACCESS: "S3_BUCKET_SHARED_ACCESS";
|
|
@@ -906,6 +939,13 @@ export interface AllowListStatus {
|
|
|
906
939
|
code: AllowListStatusCode | undefined;
|
|
907
940
|
description?: string;
|
|
908
941
|
}
|
|
942
|
+
export declare const AutoEnableMode: {
|
|
943
|
+
readonly ALL: "ALL";
|
|
944
|
+
readonly NEW: "NEW";
|
|
945
|
+
readonly NONE: "NONE";
|
|
946
|
+
};
|
|
947
|
+
export type AutoEnableMode =
|
|
948
|
+
(typeof AutoEnableMode)[keyof typeof AutoEnableMode];
|
|
909
949
|
export declare const AutomatedDiscoveryStatus: {
|
|
910
950
|
readonly DISABLED: "DISABLED";
|
|
911
951
|
readonly ENABLED: "ENABLED";
|
|
@@ -925,6 +965,12 @@ export interface BatchGetCustomDataIdentifiersResponse {
|
|
|
925
965
|
customDataIdentifiers?: BatchGetCustomDataIdentifierSummary[];
|
|
926
966
|
notFoundIdentifierIds?: string[];
|
|
927
967
|
}
|
|
968
|
+
export interface BatchUpdateAutomatedDiscoveryAccountsRequest {
|
|
969
|
+
accounts?: AutomatedDiscoveryAccountUpdate[];
|
|
970
|
+
}
|
|
971
|
+
export interface BatchUpdateAutomatedDiscoveryAccountsResponse {
|
|
972
|
+
errors?: AutomatedDiscoveryAccountUpdateError[];
|
|
973
|
+
}
|
|
928
974
|
export interface BucketCountByEffectivePermission {
|
|
929
975
|
publiclyAccessible?: number;
|
|
930
976
|
publiclyReadable?: number;
|
|
@@ -1276,6 +1322,7 @@ export interface GetAllowListResponse {
|
|
|
1276
1322
|
}
|
|
1277
1323
|
export interface GetAutomatedDiscoveryConfigurationRequest {}
|
|
1278
1324
|
export interface GetAutomatedDiscoveryConfigurationResponse {
|
|
1325
|
+
autoEnableOrganizationMembers?: AutoEnableMode;
|
|
1279
1326
|
classificationScopeId?: string;
|
|
1280
1327
|
disabledAt?: Date;
|
|
1281
1328
|
firstEnabledAt?: Date;
|
|
@@ -1550,55 +1597,12 @@ export interface ListAllowListsResponse {
|
|
|
1550
1597
|
allowLists?: AllowListSummary[];
|
|
1551
1598
|
nextToken?: string;
|
|
1552
1599
|
}
|
|
1553
|
-
export interface
|
|
1554
|
-
|
|
1555
|
-
includes?: ListJobsFilterTerm[];
|
|
1556
|
-
}
|
|
1557
|
-
export declare const ListJobsSortAttributeName: {
|
|
1558
|
-
readonly createdAt: "createdAt";
|
|
1559
|
-
readonly jobStatus: "jobStatus";
|
|
1560
|
-
readonly jobType: "jobType";
|
|
1561
|
-
readonly name: "name";
|
|
1562
|
-
};
|
|
1563
|
-
export type ListJobsSortAttributeName =
|
|
1564
|
-
(typeof ListJobsSortAttributeName)[keyof typeof ListJobsSortAttributeName];
|
|
1565
|
-
export interface ListJobsSortCriteria {
|
|
1566
|
-
attributeName?: ListJobsSortAttributeName;
|
|
1567
|
-
orderBy?: OrderBy;
|
|
1568
|
-
}
|
|
1569
|
-
export interface ListClassificationJobsRequest {
|
|
1570
|
-
filterCriteria?: ListJobsFilterCriteria;
|
|
1571
|
-
maxResults?: number;
|
|
1572
|
-
nextToken?: string;
|
|
1573
|
-
sortCriteria?: ListJobsSortCriteria;
|
|
1574
|
-
}
|
|
1575
|
-
export interface ListClassificationJobsResponse {
|
|
1576
|
-
items?: JobSummary[];
|
|
1577
|
-
nextToken?: string;
|
|
1578
|
-
}
|
|
1579
|
-
export interface ListClassificationScopesRequest {
|
|
1580
|
-
name?: string;
|
|
1581
|
-
nextToken?: string;
|
|
1582
|
-
}
|
|
1583
|
-
export interface ListClassificationScopesResponse {
|
|
1584
|
-
classificationScopes?: ClassificationScopeSummary[];
|
|
1585
|
-
nextToken?: string;
|
|
1586
|
-
}
|
|
1587
|
-
export interface ListCustomDataIdentifiersRequest {
|
|
1588
|
-
maxResults?: number;
|
|
1589
|
-
nextToken?: string;
|
|
1590
|
-
}
|
|
1591
|
-
export interface ListCustomDataIdentifiersResponse {
|
|
1592
|
-
items?: CustomDataIdentifierSummary[];
|
|
1593
|
-
nextToken?: string;
|
|
1594
|
-
}
|
|
1595
|
-
export interface ListFindingsRequest {
|
|
1596
|
-
findingCriteria?: FindingCriteria;
|
|
1600
|
+
export interface ListAutomatedDiscoveryAccountsRequest {
|
|
1601
|
+
accountIds?: string[];
|
|
1597
1602
|
maxResults?: number;
|
|
1598
1603
|
nextToken?: string;
|
|
1599
|
-
sortCriteria?: SortCriteria;
|
|
1600
1604
|
}
|
|
1601
|
-
export interface
|
|
1602
|
-
|
|
1605
|
+
export interface ListAutomatedDiscoveryAccountsResponse {
|
|
1606
|
+
items?: AutomatedDiscoveryAccount[];
|
|
1603
1607
|
nextToken?: string;
|
|
1604
1608
|
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AdminAccount,
|
|
3
3
|
AllowListCriteria,
|
|
4
|
+
AutoEnableMode,
|
|
4
5
|
AutomatedDiscoveryStatus,
|
|
5
6
|
ClassificationExportConfiguration,
|
|
7
|
+
ClassificationScopeSummary,
|
|
6
8
|
ClassificationScopeUpdateOperation,
|
|
9
|
+
CustomDataIdentifierSummary,
|
|
7
10
|
Detection,
|
|
8
11
|
FindingCriteria,
|
|
9
12
|
FindingPublishingFrequency,
|
|
@@ -11,6 +14,8 @@ import {
|
|
|
11
14
|
FindingsFilterListItem,
|
|
12
15
|
Invitation,
|
|
13
16
|
JobStatus,
|
|
17
|
+
JobSummary,
|
|
18
|
+
ListJobsFilterTerm,
|
|
14
19
|
MacieStatus,
|
|
15
20
|
ManagedDataIdentifierSummary,
|
|
16
21
|
MatchingResource,
|
|
@@ -25,8 +30,61 @@ import {
|
|
|
25
30
|
SensitivityInspectionTemplateExcludes,
|
|
26
31
|
SensitivityInspectionTemplateIncludes,
|
|
27
32
|
SensitivityInspectionTemplatesEntry,
|
|
33
|
+
SortCriteria,
|
|
28
34
|
SuppressDataIdentifier,
|
|
29
35
|
} from "./models_0";
|
|
36
|
+
export interface ListJobsFilterCriteria {
|
|
37
|
+
excludes?: ListJobsFilterTerm[];
|
|
38
|
+
includes?: ListJobsFilterTerm[];
|
|
39
|
+
}
|
|
40
|
+
export declare const ListJobsSortAttributeName: {
|
|
41
|
+
readonly createdAt: "createdAt";
|
|
42
|
+
readonly jobStatus: "jobStatus";
|
|
43
|
+
readonly jobType: "jobType";
|
|
44
|
+
readonly name: "name";
|
|
45
|
+
};
|
|
46
|
+
export type ListJobsSortAttributeName =
|
|
47
|
+
(typeof ListJobsSortAttributeName)[keyof typeof ListJobsSortAttributeName];
|
|
48
|
+
export interface ListJobsSortCriteria {
|
|
49
|
+
attributeName?: ListJobsSortAttributeName;
|
|
50
|
+
orderBy?: OrderBy;
|
|
51
|
+
}
|
|
52
|
+
export interface ListClassificationJobsRequest {
|
|
53
|
+
filterCriteria?: ListJobsFilterCriteria;
|
|
54
|
+
maxResults?: number;
|
|
55
|
+
nextToken?: string;
|
|
56
|
+
sortCriteria?: ListJobsSortCriteria;
|
|
57
|
+
}
|
|
58
|
+
export interface ListClassificationJobsResponse {
|
|
59
|
+
items?: JobSummary[];
|
|
60
|
+
nextToken?: string;
|
|
61
|
+
}
|
|
62
|
+
export interface ListClassificationScopesRequest {
|
|
63
|
+
name?: string;
|
|
64
|
+
nextToken?: string;
|
|
65
|
+
}
|
|
66
|
+
export interface ListClassificationScopesResponse {
|
|
67
|
+
classificationScopes?: ClassificationScopeSummary[];
|
|
68
|
+
nextToken?: string;
|
|
69
|
+
}
|
|
70
|
+
export interface ListCustomDataIdentifiersRequest {
|
|
71
|
+
maxResults?: number;
|
|
72
|
+
nextToken?: string;
|
|
73
|
+
}
|
|
74
|
+
export interface ListCustomDataIdentifiersResponse {
|
|
75
|
+
items?: CustomDataIdentifierSummary[];
|
|
76
|
+
nextToken?: string;
|
|
77
|
+
}
|
|
78
|
+
export interface ListFindingsRequest {
|
|
79
|
+
findingCriteria?: FindingCriteria;
|
|
80
|
+
maxResults?: number;
|
|
81
|
+
nextToken?: string;
|
|
82
|
+
sortCriteria?: SortCriteria;
|
|
83
|
+
}
|
|
84
|
+
export interface ListFindingsResponse {
|
|
85
|
+
findingIds?: string[];
|
|
86
|
+
nextToken?: string;
|
|
87
|
+
}
|
|
30
88
|
export interface ListFindingsFiltersRequest {
|
|
31
89
|
maxResults?: number;
|
|
32
90
|
nextToken?: string;
|
|
@@ -169,6 +227,7 @@ export interface UpdateAllowListResponse {
|
|
|
169
227
|
id?: string;
|
|
170
228
|
}
|
|
171
229
|
export interface UpdateAutomatedDiscoveryConfigurationRequest {
|
|
230
|
+
autoEnableOrganizationMembers?: AutoEnableMode;
|
|
172
231
|
status: AutomatedDiscoveryStatus | undefined;
|
|
173
232
|
}
|
|
174
233
|
export interface UpdateAutomatedDiscoveryConfigurationResponse {}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAutomatedDiscoveryAccountsCommandInput,
|
|
4
|
+
ListAutomatedDiscoveryAccountsCommandOutput,
|
|
5
|
+
} from "../commands/ListAutomatedDiscoveryAccountsCommand";
|
|
6
|
+
import { Macie2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAutomatedDiscoveryAccounts: (
|
|
8
|
+
config: Macie2PaginationConfiguration,
|
|
9
|
+
input: ListAutomatedDiscoveryAccountsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAutomatedDiscoveryAccountsCommandOutput>;
|
|
@@ -2,6 +2,7 @@ export * from "./DescribeBucketsPaginator";
|
|
|
2
2
|
export * from "./GetUsageStatisticsPaginator";
|
|
3
3
|
export * from "./Interfaces";
|
|
4
4
|
export * from "./ListAllowListsPaginator";
|
|
5
|
+
export * from "./ListAutomatedDiscoveryAccountsPaginator";
|
|
5
6
|
export * from "./ListClassificationJobsPaginator";
|
|
6
7
|
export * from "./ListClassificationScopesPaginator";
|
|
7
8
|
export * from "./ListCustomDataIdentifiersPaginator";
|
|
@@ -11,6 +11,10 @@ import {
|
|
|
11
11
|
BatchGetCustomDataIdentifiersCommandInput,
|
|
12
12
|
BatchGetCustomDataIdentifiersCommandOutput,
|
|
13
13
|
} from "../commands/BatchGetCustomDataIdentifiersCommand";
|
|
14
|
+
import {
|
|
15
|
+
BatchUpdateAutomatedDiscoveryAccountsCommandInput,
|
|
16
|
+
BatchUpdateAutomatedDiscoveryAccountsCommandOutput,
|
|
17
|
+
} from "../commands/BatchUpdateAutomatedDiscoveryAccountsCommand";
|
|
14
18
|
import {
|
|
15
19
|
CreateAllowListCommandInput,
|
|
16
20
|
CreateAllowListCommandOutput,
|
|
@@ -195,6 +199,10 @@ import {
|
|
|
195
199
|
ListAllowListsCommandInput,
|
|
196
200
|
ListAllowListsCommandOutput,
|
|
197
201
|
} from "../commands/ListAllowListsCommand";
|
|
202
|
+
import {
|
|
203
|
+
ListAutomatedDiscoveryAccountsCommandInput,
|
|
204
|
+
ListAutomatedDiscoveryAccountsCommandOutput,
|
|
205
|
+
} from "../commands/ListAutomatedDiscoveryAccountsCommand";
|
|
198
206
|
import {
|
|
199
207
|
ListClassificationJobsCommandInput,
|
|
200
208
|
ListClassificationJobsCommandOutput,
|
|
@@ -327,6 +335,10 @@ export declare const se_BatchGetCustomDataIdentifiersCommand: (
|
|
|
327
335
|
input: BatchGetCustomDataIdentifiersCommandInput,
|
|
328
336
|
context: __SerdeContext
|
|
329
337
|
) => Promise<__HttpRequest>;
|
|
338
|
+
export declare const se_BatchUpdateAutomatedDiscoveryAccountsCommand: (
|
|
339
|
+
input: BatchUpdateAutomatedDiscoveryAccountsCommandInput,
|
|
340
|
+
context: __SerdeContext
|
|
341
|
+
) => Promise<__HttpRequest>;
|
|
330
342
|
export declare const se_CreateAllowListCommand: (
|
|
331
343
|
input: CreateAllowListCommandInput,
|
|
332
344
|
context: __SerdeContext
|
|
@@ -511,6 +523,10 @@ export declare const se_ListAllowListsCommand: (
|
|
|
511
523
|
input: ListAllowListsCommandInput,
|
|
512
524
|
context: __SerdeContext
|
|
513
525
|
) => Promise<__HttpRequest>;
|
|
526
|
+
export declare const se_ListAutomatedDiscoveryAccountsCommand: (
|
|
527
|
+
input: ListAutomatedDiscoveryAccountsCommandInput,
|
|
528
|
+
context: __SerdeContext
|
|
529
|
+
) => Promise<__HttpRequest>;
|
|
514
530
|
export declare const se_ListClassificationJobsCommand: (
|
|
515
531
|
input: ListClassificationJobsCommandInput,
|
|
516
532
|
context: __SerdeContext
|
|
@@ -643,6 +659,10 @@ export declare const de_BatchGetCustomDataIdentifiersCommand: (
|
|
|
643
659
|
output: __HttpResponse,
|
|
644
660
|
context: __SerdeContext
|
|
645
661
|
) => Promise<BatchGetCustomDataIdentifiersCommandOutput>;
|
|
662
|
+
export declare const de_BatchUpdateAutomatedDiscoveryAccountsCommand: (
|
|
663
|
+
output: __HttpResponse,
|
|
664
|
+
context: __SerdeContext
|
|
665
|
+
) => Promise<BatchUpdateAutomatedDiscoveryAccountsCommandOutput>;
|
|
646
666
|
export declare const de_CreateAllowListCommand: (
|
|
647
667
|
output: __HttpResponse,
|
|
648
668
|
context: __SerdeContext
|
|
@@ -827,6 +847,10 @@ export declare const de_ListAllowListsCommand: (
|
|
|
827
847
|
output: __HttpResponse,
|
|
828
848
|
context: __SerdeContext
|
|
829
849
|
) => Promise<ListAllowListsCommandOutput>;
|
|
850
|
+
export declare const de_ListAutomatedDiscoveryAccountsCommand: (
|
|
851
|
+
output: __HttpResponse,
|
|
852
|
+
context: __SerdeContext
|
|
853
|
+
) => Promise<ListAutomatedDiscoveryAccountsCommandOutput>;
|
|
830
854
|
export declare const de_ListClassificationJobsCommand: (
|
|
831
855
|
output: __HttpResponse,
|
|
832
856
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-macie2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Macie2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.598.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-macie2",
|
|
@@ -18,47 +18,47 @@
|
|
|
18
18
|
"module": "./dist-es/index.js",
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@aws-crypto/sha256-browser": "
|
|
22
|
-
"@aws-crypto/sha256-js": "
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.2.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.0.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.0.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.0.
|
|
48
|
-
"@smithy/protocol-http": "^4.0.
|
|
49
|
-
"@smithy/smithy-client": "^3.1.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
21
|
+
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
|
+
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.598.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.598.0",
|
|
25
|
+
"@aws-sdk/core": "3.598.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.598.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.598.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.598.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.598.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.598.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.598.0",
|
|
32
|
+
"@aws-sdk/types": "3.598.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.598.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.598.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.598.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.2",
|
|
37
|
+
"@smithy/core": "^2.2.1",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.0.2",
|
|
39
|
+
"@smithy/hash-node": "^3.0.1",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.1",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.1",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.0.2",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.4",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.1",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.1",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.1",
|
|
47
|
+
"@smithy/node-http-handler": "^3.0.1",
|
|
48
|
+
"@smithy/protocol-http": "^4.0.1",
|
|
49
|
+
"@smithy/smithy-client": "^3.1.2",
|
|
50
|
+
"@smithy/types": "^3.1.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.1",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.0.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.4",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.4",
|
|
57
|
+
"@smithy/util-endpoints": "^2.0.2",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.1",
|
|
59
|
+
"@smithy/util-retry": "^3.0.1",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
|
-
"@smithy/util-waiter": "^3.0.
|
|
61
|
+
"@smithy/util-waiter": "^3.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|
|
63
63
|
"uuid": "^9.0.1"
|
|
64
64
|
},
|