@aws-sdk/client-inspector2 3.168.0 → 3.170.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Inspector2.d.ts +586 -165
- package/dist-types/ts3.4/Inspector2Client.d.ts +321 -105
- package/dist-types/ts3.4/commands/AssociateMemberCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/BatchGetAccountStatusCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/BatchGetFreeTrialInfoCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CancelFindingsReportCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateFilterCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateFindingsReportCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteFilterCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeOrganizationConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisableCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DisableDelegatedAdminAccountCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisassociateMemberCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/EnableCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/EnableDelegatedAdminAccountCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetConfigurationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetDelegatedAdminAccountCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetFindingsReportStatusCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetMemberCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListAccountPermissionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListCoverageCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListCoverageStatisticsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListDelegatedAdminAccountsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListFiltersCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListFindingAggregationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListUsageTotalsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateConfigurationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateFilterCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateOrganizationConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +32 -32
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/Inspector2ServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +2317 -2195
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListAccountPermissionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListCoveragePaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListCoverageStatisticsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListDelegatedAdminAccountsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListFiltersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListFindingAggregationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListFindingsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListMembersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListUsageTotalsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +10 -10
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +389 -98
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { Inspector2 } from "../Inspector2";
|
|
3
|
-
import { Inspector2Client } from "../Inspector2Client";
|
|
4
|
-
export interface Inspector2PaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { Inspector2 } from "../Inspector2";
|
|
3
|
+
import { Inspector2Client } from "../Inspector2Client";
|
|
4
|
+
export interface Inspector2PaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: Inspector2 | Inspector2Client;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAccountPermissionsCommandInput,
|
|
4
|
+
ListAccountPermissionsCommandOutput,
|
|
5
|
+
} from "../commands/ListAccountPermissionsCommand";
|
|
6
|
+
import { Inspector2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListAccountPermissions(
|
|
8
|
+
config: Inspector2PaginationConfiguration,
|
|
9
|
+
input: ListAccountPermissionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListAccountPermissionsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCoverageCommandInput,
|
|
4
|
+
ListCoverageCommandOutput,
|
|
5
|
+
} from "../commands/ListCoverageCommand";
|
|
6
|
+
import { Inspector2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListCoverage(
|
|
8
|
+
config: Inspector2PaginationConfiguration,
|
|
9
|
+
input: ListCoverageCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListCoverageCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCoverageStatisticsCommandInput,
|
|
4
|
+
ListCoverageStatisticsCommandOutput,
|
|
5
|
+
} from "../commands/ListCoverageStatisticsCommand";
|
|
6
|
+
import { Inspector2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListCoverageStatistics(
|
|
8
|
+
config: Inspector2PaginationConfiguration,
|
|
9
|
+
input: ListCoverageStatisticsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListCoverageStatisticsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDelegatedAdminAccountsCommandInput,
|
|
4
|
+
ListDelegatedAdminAccountsCommandOutput,
|
|
5
|
+
} from "../commands/ListDelegatedAdminAccountsCommand";
|
|
6
|
+
import { Inspector2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListDelegatedAdminAccounts(
|
|
8
|
+
config: Inspector2PaginationConfiguration,
|
|
9
|
+
input: ListDelegatedAdminAccountsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListDelegatedAdminAccountsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListFiltersCommandInput,
|
|
4
|
+
ListFiltersCommandOutput,
|
|
5
|
+
} from "../commands/ListFiltersCommand";
|
|
6
|
+
import { Inspector2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListFilters(
|
|
8
|
+
config: Inspector2PaginationConfiguration,
|
|
9
|
+
input: ListFiltersCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListFiltersCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListFindingAggregationsCommandInput,
|
|
4
|
+
ListFindingAggregationsCommandOutput,
|
|
5
|
+
} from "../commands/ListFindingAggregationsCommand";
|
|
6
|
+
import { Inspector2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListFindingAggregations(
|
|
8
|
+
config: Inspector2PaginationConfiguration,
|
|
9
|
+
input: ListFindingAggregationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListFindingAggregationsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListFindingsCommandInput,
|
|
4
|
+
ListFindingsCommandOutput,
|
|
5
|
+
} from "../commands/ListFindingsCommand";
|
|
6
|
+
import { Inspector2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListFindings(
|
|
8
|
+
config: Inspector2PaginationConfiguration,
|
|
9
|
+
input: ListFindingsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListFindingsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListMembersCommandInput,
|
|
4
|
+
ListMembersCommandOutput,
|
|
5
|
+
} from "../commands/ListMembersCommand";
|
|
6
|
+
import { Inspector2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListMembers(
|
|
8
|
+
config: Inspector2PaginationConfiguration,
|
|
9
|
+
input: ListMembersCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListMembersCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListUsageTotalsCommandInput,
|
|
4
|
+
ListUsageTotalsCommandOutput,
|
|
5
|
+
} from "../commands/ListUsageTotalsCommand";
|
|
6
|
+
import { Inspector2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListUsageTotals(
|
|
8
|
+
config: Inspector2PaginationConfiguration,
|
|
9
|
+
input: ListUsageTotalsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListUsageTotalsCommandOutput>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListAccountPermissionsPaginator";
|
|
3
|
-
export * from "./ListCoveragePaginator";
|
|
4
|
-
export * from "./ListCoverageStatisticsPaginator";
|
|
5
|
-
export * from "./ListDelegatedAdminAccountsPaginator";
|
|
6
|
-
export * from "./ListFiltersPaginator";
|
|
7
|
-
export * from "./ListFindingAggregationsPaginator";
|
|
8
|
-
export * from "./ListFindingsPaginator";
|
|
9
|
-
export * from "./ListMembersPaginator";
|
|
10
|
-
export * from "./ListUsageTotalsPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListAccountPermissionsPaginator";
|
|
3
|
+
export * from "./ListCoveragePaginator";
|
|
4
|
+
export * from "./ListCoverageStatisticsPaginator";
|
|
5
|
+
export * from "./ListDelegatedAdminAccountsPaginator";
|
|
6
|
+
export * from "./ListFiltersPaginator";
|
|
7
|
+
export * from "./ListFindingAggregationsPaginator";
|
|
8
|
+
export * from "./ListFindingsPaginator";
|
|
9
|
+
export * from "./ListMembersPaginator";
|
|
10
|
+
export * from "./ListUsageTotalsPaginator";
|