@aws-sdk/client-accessanalyzer 3.1087.0 → 3.1089.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 +1 -1
- package/dist-types/ts3.4/AccessAnalyzer.d.ts +132 -143
- package/dist-types/ts3.4/AccessAnalyzerClient.d.ts +9 -28
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/ApplyArchiveRuleCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/CancelPolicyGenerationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CheckAccessNotGrantedCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CheckNoNewAccessCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CheckNoPublicAccessCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateAccessPreviewCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateAnalyzerCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateArchiveRuleCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/CreateServiceLinkedAnalyzerCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteAnalyzerCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteArchiveRuleCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/DeleteServiceLinkedAnalyzerCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GenerateFindingRecommendationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAccessPreviewCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetAnalyzedResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetAnalyzerCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetArchiveRuleCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetFindingCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetFindingRecommendationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetFindingV2Command.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetFindingsStatisticsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetGeneratedPolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAccessPreviewFindingsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAccessPreviewsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAnalyzedResourcesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAnalyzersCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListArchiveRulesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListFindingsV2Command.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateAnalyzerCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateArchiveRuleCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/UpdateFindingsCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/ValidatePolicyCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +8 -16
- package/dist-types/ts3.4/models/errors.d.ts +8 -24
- package/dist-types/ts3.4/models/models_0.d.ts +13 -40
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +38 -38
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetArchiveRuleRequest,
|
|
4
|
-
GetArchiveRuleResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetArchiveRuleRequest, GetArchiveRuleResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetArchiveRuleCommandInput extends GetArchiveRuleRequest {}
|
|
8
|
-
export interface GetArchiveRuleCommandOutput
|
|
9
|
-
extends GetArchiveRuleResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetArchiveRuleCommandOutput extends GetArchiveRuleResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetArchiveRuleCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetArchiveRuleCommandInput
|
|
8
|
+
input: GetArchiveRuleCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetArchiveRuleCommandInput,
|
|
16
11
|
GetArchiveRuleCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetArchiveRuleCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetArchiveRuleCommandInput
|
|
17
|
+
input: GetArchiveRuleCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetArchiveRuleCommandInput,
|
|
25
20
|
GetArchiveRuleCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetFindingRequest, GetFindingResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetFindingCommandInput extends GetFindingRequest {}
|
|
5
|
-
export interface GetFindingCommandOutput
|
|
6
|
-
extends GetFindingResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetFindingCommandOutput extends GetFindingResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetFindingCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetFindingCommandInput
|
|
8
|
+
input: GetFindingCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetFindingCommandInput,
|
|
13
11
|
GetFindingCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetFindingCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetFindingCommandInput
|
|
17
|
+
input: GetFindingCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetFindingCommandInput,
|
|
22
20
|
GetFindingCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetFindingRecommendationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetFindingRecommendationCommandInput
|
|
8
|
-
extends GetFindingRecommendationRequest {}
|
|
7
|
+
export interface GetFindingRecommendationCommandInput extends GetFindingRecommendationRequest {}
|
|
9
8
|
export interface GetFindingRecommendationCommandOutput
|
|
10
|
-
extends GetFindingRecommendationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetFindingRecommendationResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetFindingRecommendationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetFindingRecommendationCommandInput
|
|
12
|
+
input: GetFindingRecommendationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetFindingRecommendationCommandInput,
|
|
17
15
|
GetFindingRecommendationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetFindingRecommendationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetFindingRecommendationCommandInput
|
|
21
|
+
input: GetFindingRecommendationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetFindingRecommendationCommandInput,
|
|
26
24
|
GetFindingRecommendationCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetFindingV2Request, GetFindingV2Response } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetFindingV2CommandInput extends GetFindingV2Request {}
|
|
5
|
-
export interface GetFindingV2CommandOutput
|
|
6
|
-
extends GetFindingV2Response,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetFindingV2CommandOutput extends GetFindingV2Response, __MetadataBearer {}
|
|
8
6
|
declare const GetFindingV2Command_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetFindingV2CommandInput
|
|
8
|
+
input: GetFindingV2CommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetFindingV2CommandInput,
|
|
13
11
|
GetFindingV2CommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetFindingV2Command_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetFindingV2CommandInput
|
|
17
|
+
input: GetFindingV2CommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetFindingV2CommandInput,
|
|
22
20
|
GetFindingV2CommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetFindingsStatisticsRequest,
|
|
4
|
-
GetFindingsStatisticsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetFindingsStatisticsRequest, GetFindingsStatisticsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetFindingsStatisticsCommandInput
|
|
8
|
-
extends GetFindingsStatisticsRequest {}
|
|
4
|
+
export interface GetFindingsStatisticsCommandInput extends GetFindingsStatisticsRequest {}
|
|
9
5
|
export interface GetFindingsStatisticsCommandOutput
|
|
10
|
-
extends GetFindingsStatisticsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetFindingsStatisticsResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetFindingsStatisticsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetFindingsStatisticsCommandInput
|
|
9
|
+
input: GetFindingsStatisticsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetFindingsStatisticsCommandInput,
|
|
17
12
|
GetFindingsStatisticsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetFindingsStatisticsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetFindingsStatisticsCommandInput
|
|
18
|
+
input: GetFindingsStatisticsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetFindingsStatisticsCommandInput,
|
|
26
21
|
GetFindingsStatisticsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetGeneratedPolicyRequest,
|
|
4
|
-
GetGeneratedPolicyResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetGeneratedPolicyRequest, GetGeneratedPolicyResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetGeneratedPolicyCommandInput
|
|
8
|
-
extends GetGeneratedPolicyRequest {}
|
|
4
|
+
export interface GetGeneratedPolicyCommandInput extends GetGeneratedPolicyRequest {}
|
|
9
5
|
export interface GetGeneratedPolicyCommandOutput
|
|
10
|
-
extends GetGeneratedPolicyResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetGeneratedPolicyResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetGeneratedPolicyCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetGeneratedPolicyCommandInput
|
|
9
|
+
input: GetGeneratedPolicyCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetGeneratedPolicyCommandInput,
|
|
17
12
|
GetGeneratedPolicyCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetGeneratedPolicyCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetGeneratedPolicyCommandInput
|
|
18
|
+
input: GetGeneratedPolicyCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetGeneratedPolicyCommandInput,
|
|
26
21
|
GetGeneratedPolicyCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListAccessPreviewFindingsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAccessPreviewFindingsCommandInput
|
|
8
|
-
extends ListAccessPreviewFindingsRequest {}
|
|
7
|
+
export interface ListAccessPreviewFindingsCommandInput extends ListAccessPreviewFindingsRequest {}
|
|
9
8
|
export interface ListAccessPreviewFindingsCommandOutput
|
|
10
|
-
extends ListAccessPreviewFindingsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListAccessPreviewFindingsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListAccessPreviewFindingsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListAccessPreviewFindingsCommandInput
|
|
12
|
+
input: ListAccessPreviewFindingsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListAccessPreviewFindingsCommandInput,
|
|
17
15
|
ListAccessPreviewFindingsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListAccessPreviewFindingsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListAccessPreviewFindingsCommandInput
|
|
21
|
+
input: ListAccessPreviewFindingsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListAccessPreviewFindingsCommandInput,
|
|
26
24
|
ListAccessPreviewFindingsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAccessPreviewsRequest,
|
|
4
|
-
ListAccessPreviewsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAccessPreviewsRequest, ListAccessPreviewsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAccessPreviewsCommandInput
|
|
8
|
-
extends ListAccessPreviewsRequest {}
|
|
4
|
+
export interface ListAccessPreviewsCommandInput extends ListAccessPreviewsRequest {}
|
|
9
5
|
export interface ListAccessPreviewsCommandOutput
|
|
10
|
-
extends ListAccessPreviewsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListAccessPreviewsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListAccessPreviewsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListAccessPreviewsCommandInput
|
|
9
|
+
input: ListAccessPreviewsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListAccessPreviewsCommandInput,
|
|
17
12
|
ListAccessPreviewsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListAccessPreviewsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListAccessPreviewsCommandInput
|
|
18
|
+
input: ListAccessPreviewsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListAccessPreviewsCommandInput,
|
|
26
21
|
ListAccessPreviewsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAnalyzedResourcesRequest,
|
|
4
|
-
ListAnalyzedResourcesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAnalyzedResourcesRequest, ListAnalyzedResourcesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAnalyzedResourcesCommandInput
|
|
8
|
-
extends ListAnalyzedResourcesRequest {}
|
|
4
|
+
export interface ListAnalyzedResourcesCommandInput extends ListAnalyzedResourcesRequest {}
|
|
9
5
|
export interface ListAnalyzedResourcesCommandOutput
|
|
10
|
-
extends ListAnalyzedResourcesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListAnalyzedResourcesResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListAnalyzedResourcesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListAnalyzedResourcesCommandInput
|
|
9
|
+
input: ListAnalyzedResourcesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListAnalyzedResourcesCommandInput,
|
|
17
12
|
ListAnalyzedResourcesCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListAnalyzedResourcesCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListAnalyzedResourcesCommandInput
|
|
18
|
+
input: ListAnalyzedResourcesCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListAnalyzedResourcesCommandInput,
|
|
26
21
|
ListAnalyzedResourcesCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAnalyzersRequest,
|
|
4
|
-
ListAnalyzersResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAnalyzersRequest, ListAnalyzersResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListAnalyzersCommandInput extends ListAnalyzersRequest {}
|
|
8
|
-
export interface ListAnalyzersCommandOutput
|
|
9
|
-
extends ListAnalyzersResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListAnalyzersCommandOutput extends ListAnalyzersResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListAnalyzersCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListAnalyzersCommandInput
|
|
8
|
+
input: ListAnalyzersCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListAnalyzersCommandInput,
|
|
16
11
|
ListAnalyzersCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListArchiveRulesRequest,
|
|
4
|
-
ListArchiveRulesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListArchiveRulesRequest, ListArchiveRulesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListArchiveRulesCommandInput extends ListArchiveRulesRequest {}
|
|
8
|
-
export interface ListArchiveRulesCommandOutput
|
|
9
|
-
extends ListArchiveRulesResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListArchiveRulesCommandOutput extends ListArchiveRulesResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListArchiveRulesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListArchiveRulesCommandInput
|
|
8
|
+
input: ListArchiveRulesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListArchiveRulesCommandInput,
|
|
16
11
|
ListArchiveRulesCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListArchiveRulesCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListArchiveRulesCommandInput
|
|
17
|
+
input: ListArchiveRulesCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListArchiveRulesCommandInput,
|
|
25
20
|
ListArchiveRulesCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListFindingsRequest, ListFindingsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListFindingsCommandInput extends ListFindingsRequest {}
|
|
5
|
-
export interface ListFindingsCommandOutput
|
|
6
|
-
extends ListFindingsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListFindingsCommandOutput extends ListFindingsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListFindingsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListFindingsCommandInput
|
|
8
|
+
input: ListFindingsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListFindingsCommandInput,
|
|
13
11
|
ListFindingsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListFindingsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListFindingsCommandInput
|
|
17
|
+
input: ListFindingsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListFindingsCommandInput,
|
|
22
20
|
ListFindingsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListFindingsV2Request,
|
|
4
|
-
ListFindingsV2Response,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListFindingsV2Request, ListFindingsV2Response } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListFindingsV2CommandInput extends ListFindingsV2Request {}
|
|
8
|
-
export interface ListFindingsV2CommandOutput
|
|
9
|
-
extends ListFindingsV2Response,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListFindingsV2CommandOutput extends ListFindingsV2Response, __MetadataBearer {}
|
|
11
6
|
declare const ListFindingsV2Command_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListFindingsV2CommandInput
|
|
8
|
+
input: ListFindingsV2CommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListFindingsV2CommandInput,
|
|
16
11
|
ListFindingsV2CommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListFindingsV2Command_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListFindingsV2CommandInput
|
|
17
|
+
input: ListFindingsV2CommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListFindingsV2CommandInput,
|
|
25
20
|
ListFindingsV2CommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListPolicyGenerationsRequest,
|
|
4
|
-
ListPolicyGenerationsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListPolicyGenerationsRequest, ListPolicyGenerationsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListPolicyGenerationsCommandInput
|
|
8
|
-
extends ListPolicyGenerationsRequest {}
|
|
4
|
+
export interface ListPolicyGenerationsCommandInput extends ListPolicyGenerationsRequest {}
|
|
9
5
|
export interface ListPolicyGenerationsCommandOutput
|
|
10
|
-
extends ListPolicyGenerationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListPolicyGenerationsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListPolicyGenerationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListPolicyGenerationsCommandInput
|
|
9
|
+
input: ListPolicyGenerationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListPolicyGenerationsCommandInput,
|
|
17
12
|
ListPolicyGenerationsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartPolicyGenerationRequest,
|
|
4
|
-
StartPolicyGenerationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartPolicyGenerationRequest, StartPolicyGenerationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartPolicyGenerationCommandInput
|
|
8
|
-
extends StartPolicyGenerationRequest {}
|
|
4
|
+
export interface StartPolicyGenerationCommandInput extends StartPolicyGenerationRequest {}
|
|
9
5
|
export interface StartPolicyGenerationCommandOutput
|
|
10
|
-
extends StartPolicyGenerationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartPolicyGenerationResponse, __MetadataBearer {}
|
|
12
7
|
declare const StartPolicyGenerationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartPolicyGenerationCommandInput
|
|
9
|
+
input: StartPolicyGenerationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartPolicyGenerationCommandInput,
|
|
17
12
|
StartPolicyGenerationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StartPolicyGenerationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StartPolicyGenerationCommandInput
|
|
18
|
+
input: StartPolicyGenerationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StartPolicyGenerationCommandInput,
|
|
26
21
|
StartPolicyGenerationCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { StartResourceScanRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface StartResourceScanCommandInput
|
|
5
|
-
extends StartResourceScanRequest {}
|
|
4
|
+
export interface StartResourceScanCommandInput extends StartResourceScanRequest {}
|
|
6
5
|
export interface StartResourceScanCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const StartResourceScanCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: StartResourceScanCommandInput
|
|
8
|
+
input: StartResourceScanCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
StartResourceScanCommandInput,
|
|
12
11
|
StartResourceScanCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const StartResourceScanCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: StartResourceScanCommandInput
|
|
17
|
+
input: StartResourceScanCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
StartResourceScanCommandInput,
|
|
21
20
|
StartResourceScanCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateAnalyzerRequest,
|
|
4
|
-
UpdateAnalyzerResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateAnalyzerRequest, UpdateAnalyzerResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateAnalyzerCommandInput extends UpdateAnalyzerRequest {}
|
|
8
|
-
export interface UpdateAnalyzerCommandOutput
|
|
9
|
-
extends UpdateAnalyzerResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateAnalyzerCommandOutput extends UpdateAnalyzerResponse, __MetadataBearer {}
|
|
11
6
|
declare const UpdateAnalyzerCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateAnalyzerCommandInput
|
|
8
|
+
input: UpdateAnalyzerCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateAnalyzerCommandInput,
|
|
16
11
|
UpdateAnalyzerCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateAnalyzerCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateAnalyzerCommandInput
|
|
17
|
+
input: UpdateAnalyzerCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateAnalyzerCommandInput,
|
|
25
20
|
UpdateAnalyzerCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { UpdateArchiveRuleRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface UpdateArchiveRuleCommandInput
|
|
5
|
-
extends UpdateArchiveRuleRequest {}
|
|
4
|
+
export interface UpdateArchiveRuleCommandInput extends UpdateArchiveRuleRequest {}
|
|
6
5
|
export interface UpdateArchiveRuleCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const UpdateArchiveRuleCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: UpdateArchiveRuleCommandInput
|
|
8
|
+
input: UpdateArchiveRuleCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
UpdateArchiveRuleCommandInput,
|
|
12
11
|
UpdateArchiveRuleCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const UpdateArchiveRuleCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: UpdateArchiveRuleCommandInput
|
|
17
|
+
input: UpdateArchiveRuleCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
UpdateArchiveRuleCommandInput,
|
|
21
20
|
UpdateArchiveRuleCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface UpdateFindingsCommandInput extends UpdateFindingsRequest {}
|
|
|
5
5
|
export interface UpdateFindingsCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const UpdateFindingsCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: UpdateFindingsCommandInput
|
|
8
|
+
input: UpdateFindingsCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
UpdateFindingsCommandInput,
|
|
11
11
|
UpdateFindingsCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const UpdateFindingsCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: UpdateFindingsCommandInput
|
|
17
|
+
input: UpdateFindingsCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
UpdateFindingsCommandInput,
|
|
20
20
|
UpdateFindingsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ValidatePolicyRequest,
|
|
4
|
-
ValidatePolicyResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ValidatePolicyRequest, ValidatePolicyResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ValidatePolicyCommandInput extends ValidatePolicyRequest {}
|
|
8
|
-
export interface ValidatePolicyCommandOutput
|
|
9
|
-
extends ValidatePolicyResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ValidatePolicyCommandOutput extends ValidatePolicyResponse, __MetadataBearer {}
|
|
11
6
|
declare const ValidatePolicyCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ValidatePolicyCommandInput
|
|
8
|
+
input: ValidatePolicyCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ValidatePolicyCommandInput,
|
|
16
11
|
ValidatePolicyCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ValidatePolicyCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ValidatePolicyCommandInput
|
|
17
|
+
input: ValidatePolicyCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ValidatePolicyCommandInput,
|
|
25
20
|
ValidatePolicyCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|