@aws-sdk/client-inspector2 3.50.0 → 3.51.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 +8 -0
- package/dist-types/ts3.4/Inspector2.d.ts +155 -0
- package/dist-types/ts3.4/Inspector2Client.d.ts +103 -0
- package/dist-types/ts3.4/commands/AssociateMemberCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/BatchGetAccountStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/BatchGetFreeTrialInfoCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CancelFindingsReportCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateFilterCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateFindingsReportCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteFilterCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeOrganizationConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisableCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisableDelegatedAdminAccountCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateMemberCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/EnableCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/EnableDelegatedAdminAccountCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDelegatedAdminAccountCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetFindingsReportStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetMemberCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListAccountPermissionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListCoverageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListCoverageStatisticsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDelegatedAdminAccountsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListFiltersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListFindingAggregationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListUsageTotalsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateFilterCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateOrganizationConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +30 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +2384 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAccountPermissionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListCoveragePaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListCoverageStatisticsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListDelegatedAdminAccountsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListFiltersPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListFindingAggregationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListFindingsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListMembersPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListUsageTotalsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +10 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +92 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
|
|
4
|
+
import { ListCoverageRequest, ListCoverageResponse } from "../models/models_0";
|
|
5
|
+
export interface ListCoverageCommandInput extends ListCoverageRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListCoverageCommandOutput extends ListCoverageResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListCoverageCommand extends $Command<ListCoverageCommandInput, ListCoverageCommandOutput, Inspector2ClientResolvedConfig> {
|
|
11
|
+
readonly input: ListCoverageCommandInput;
|
|
12
|
+
constructor(input: ListCoverageCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCoverageCommandInput, ListCoverageCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
|
|
4
|
+
import { ListCoverageStatisticsRequest, ListCoverageStatisticsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListCoverageStatisticsCommandInput extends ListCoverageStatisticsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListCoverageStatisticsCommandOutput extends ListCoverageStatisticsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListCoverageStatisticsCommand extends $Command<ListCoverageStatisticsCommandInput, ListCoverageStatisticsCommandOutput, Inspector2ClientResolvedConfig> {
|
|
11
|
+
readonly input: ListCoverageStatisticsCommandInput;
|
|
12
|
+
constructor(input: ListCoverageStatisticsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCoverageStatisticsCommandInput, ListCoverageStatisticsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
|
|
4
|
+
import { ListDelegatedAdminAccountsRequest, ListDelegatedAdminAccountsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListDelegatedAdminAccountsCommandInput extends ListDelegatedAdminAccountsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListDelegatedAdminAccountsCommandOutput extends ListDelegatedAdminAccountsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListDelegatedAdminAccountsCommand extends $Command<ListDelegatedAdminAccountsCommandInput, ListDelegatedAdminAccountsCommandOutput, Inspector2ClientResolvedConfig> {
|
|
11
|
+
readonly input: ListDelegatedAdminAccountsCommandInput;
|
|
12
|
+
constructor(input: ListDelegatedAdminAccountsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDelegatedAdminAccountsCommandInput, ListDelegatedAdminAccountsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
|
|
4
|
+
import { ListFiltersRequest, ListFiltersResponse } from "../models/models_0";
|
|
5
|
+
export interface ListFiltersCommandInput extends ListFiltersRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListFiltersCommandOutput extends ListFiltersResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListFiltersCommand extends $Command<ListFiltersCommandInput, ListFiltersCommandOutput, Inspector2ClientResolvedConfig> {
|
|
11
|
+
readonly input: ListFiltersCommandInput;
|
|
12
|
+
constructor(input: ListFiltersCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFiltersCommandInput, ListFiltersCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
|
|
4
|
+
import { ListFindingAggregationsRequest, ListFindingAggregationsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListFindingAggregationsCommandInput extends ListFindingAggregationsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListFindingAggregationsCommandOutput extends ListFindingAggregationsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListFindingAggregationsCommand extends $Command<ListFindingAggregationsCommandInput, ListFindingAggregationsCommandOutput, Inspector2ClientResolvedConfig> {
|
|
11
|
+
readonly input: ListFindingAggregationsCommandInput;
|
|
12
|
+
constructor(input: ListFindingAggregationsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFindingAggregationsCommandInput, ListFindingAggregationsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
|
|
4
|
+
import { ListFindingsRequest, ListFindingsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListFindingsCommandInput extends ListFindingsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListFindingsCommandOutput extends ListFindingsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListFindingsCommand extends $Command<ListFindingsCommandInput, ListFindingsCommandOutput, Inspector2ClientResolvedConfig> {
|
|
11
|
+
readonly input: ListFindingsCommandInput;
|
|
12
|
+
constructor(input: ListFindingsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFindingsCommandInput, ListFindingsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
|
|
4
|
+
import { ListMembersRequest, ListMembersResponse } from "../models/models_0";
|
|
5
|
+
export interface ListMembersCommandInput extends ListMembersRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListMembersCommandOutput extends ListMembersResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListMembersCommand extends $Command<ListMembersCommandInput, ListMembersCommandOutput, Inspector2ClientResolvedConfig> {
|
|
11
|
+
readonly input: ListMembersCommandInput;
|
|
12
|
+
constructor(input: ListMembersCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMembersCommandInput, ListMembersCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
|
|
4
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, Inspector2ClientResolvedConfig> {
|
|
11
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
12
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
|
|
4
|
+
import { ListUsageTotalsRequest, ListUsageTotalsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListUsageTotalsCommandInput extends ListUsageTotalsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListUsageTotalsCommandOutput extends ListUsageTotalsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListUsageTotalsCommand extends $Command<ListUsageTotalsCommandInput, ListUsageTotalsCommandOutput, Inspector2ClientResolvedConfig> {
|
|
11
|
+
readonly input: ListUsageTotalsCommandInput;
|
|
12
|
+
constructor(input: ListUsageTotalsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListUsageTotalsCommandInput, ListUsageTotalsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
|
|
4
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
|
+
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, Inspector2ClientResolvedConfig> {
|
|
11
|
+
readonly input: TagResourceCommandInput;
|
|
12
|
+
constructor(input: TagResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
|
|
4
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, Inspector2ClientResolvedConfig> {
|
|
11
|
+
readonly input: UntagResourceCommandInput;
|
|
12
|
+
constructor(input: UntagResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
|
|
4
|
+
import { UpdateFilterRequest, UpdateFilterResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateFilterCommandInput extends UpdateFilterRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateFilterCommandOutput extends UpdateFilterResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateFilterCommand extends $Command<UpdateFilterCommandInput, UpdateFilterCommandOutput, Inspector2ClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateFilterCommandInput;
|
|
12
|
+
constructor(input: UpdateFilterCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFilterCommandInput, UpdateFilterCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
|
|
4
|
+
import { UpdateOrganizationConfigurationRequest, UpdateOrganizationConfigurationResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateOrganizationConfigurationCommandInput extends UpdateOrganizationConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateOrganizationConfigurationCommandOutput extends UpdateOrganizationConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateOrganizationConfigurationCommand extends $Command<UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput, Inspector2ClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateOrganizationConfigurationCommandInput;
|
|
12
|
+
constructor(input: UpdateOrganizationConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export * from "./AssociateMemberCommand";
|
|
2
|
+
export * from "./BatchGetAccountStatusCommand";
|
|
3
|
+
export * from "./BatchGetFreeTrialInfoCommand";
|
|
4
|
+
export * from "./CancelFindingsReportCommand";
|
|
5
|
+
export * from "./CreateFilterCommand";
|
|
6
|
+
export * from "./CreateFindingsReportCommand";
|
|
7
|
+
export * from "./DeleteFilterCommand";
|
|
8
|
+
export * from "./DescribeOrganizationConfigurationCommand";
|
|
9
|
+
export * from "./DisableCommand";
|
|
10
|
+
export * from "./DisableDelegatedAdminAccountCommand";
|
|
11
|
+
export * from "./DisassociateMemberCommand";
|
|
12
|
+
export * from "./EnableCommand";
|
|
13
|
+
export * from "./EnableDelegatedAdminAccountCommand";
|
|
14
|
+
export * from "./GetDelegatedAdminAccountCommand";
|
|
15
|
+
export * from "./GetFindingsReportStatusCommand";
|
|
16
|
+
export * from "./GetMemberCommand";
|
|
17
|
+
export * from "./ListAccountPermissionsCommand";
|
|
18
|
+
export * from "./ListCoverageCommand";
|
|
19
|
+
export * from "./ListCoverageStatisticsCommand";
|
|
20
|
+
export * from "./ListDelegatedAdminAccountsCommand";
|
|
21
|
+
export * from "./ListFiltersCommand";
|
|
22
|
+
export * from "./ListFindingAggregationsCommand";
|
|
23
|
+
export * from "./ListFindingsCommand";
|
|
24
|
+
export * from "./ListMembersCommand";
|
|
25
|
+
export * from "./ListTagsForResourceCommand";
|
|
26
|
+
export * from "./ListUsageTotalsCommand";
|
|
27
|
+
export * from "./TagResourceCommand";
|
|
28
|
+
export * from "./UntagResourceCommand";
|
|
29
|
+
export * from "./UpdateFilterCommand";
|
|
30
|
+
export * from "./UpdateOrganizationConfigurationCommand";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|