@aws-sdk/client-accessanalyzer 3.169.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 +8 -0
- package/dist-types/ts3.4/AccessAnalyzer.d.ts +508 -145
- package/dist-types/ts3.4/AccessAnalyzerClient.d.ts +298 -101
- package/dist-types/ts3.4/commands/ApplyArchiveRuleCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CancelPolicyGenerationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateAccessPreviewCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateAnalyzerCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateArchiveRuleCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DeleteAnalyzerCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteArchiveRuleCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/GetAccessPreviewCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetAnalyzedResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetAnalyzerCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetArchiveRuleCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetFindingCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetGeneratedPolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListAccessPreviewFindingsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAccessPreviewsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListAnalyzedResourcesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAnalyzersCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListArchiveRulesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +33 -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/UpdateArchiveRuleCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/UpdateFindingsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ValidatePolicyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +28 -28
- 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/AccessAnalyzerServiceException.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 +1473 -1366
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListAccessPreviewFindingsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAccessPreviewsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAnalyzedResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAnalyzersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListArchiveRulesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListFindingsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPolicyGenerationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ValidatePolicyPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +9 -9
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +341 -86
- 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,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AccessAnalyzerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AccessAnalyzerClient";
|
|
13
|
+
import {
|
|
14
|
+
ListAnalyzedResourcesRequest,
|
|
15
|
+
ListAnalyzedResourcesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListAnalyzedResourcesCommandInput
|
|
18
|
+
extends ListAnalyzedResourcesRequest {}
|
|
19
|
+
export interface ListAnalyzedResourcesCommandOutput
|
|
20
|
+
extends ListAnalyzedResourcesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListAnalyzedResourcesCommand extends $Command<
|
|
24
|
+
ListAnalyzedResourcesCommandInput,
|
|
25
|
+
ListAnalyzedResourcesCommandOutput,
|
|
26
|
+
AccessAnalyzerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListAnalyzedResourcesCommandInput;
|
|
29
|
+
constructor(input: ListAnalyzedResourcesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AccessAnalyzerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListAnalyzedResourcesCommandInput,
|
|
37
|
+
ListAnalyzedResourcesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AccessAnalyzerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AccessAnalyzerClient";
|
|
13
|
+
import {
|
|
14
|
+
ListAnalyzersRequest,
|
|
15
|
+
ListAnalyzersResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListAnalyzersCommandInput extends ListAnalyzersRequest {}
|
|
18
|
+
export interface ListAnalyzersCommandOutput
|
|
19
|
+
extends ListAnalyzersResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListAnalyzersCommand extends $Command<
|
|
23
|
+
ListAnalyzersCommandInput,
|
|
24
|
+
ListAnalyzersCommandOutput,
|
|
25
|
+
AccessAnalyzerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListAnalyzersCommandInput;
|
|
28
|
+
constructor(input: ListAnalyzersCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: AccessAnalyzerClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListAnalyzersCommandInput, ListAnalyzersCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AccessAnalyzerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AccessAnalyzerClient";
|
|
13
|
+
import {
|
|
14
|
+
ListArchiveRulesRequest,
|
|
15
|
+
ListArchiveRulesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListArchiveRulesCommandInput extends ListArchiveRulesRequest {}
|
|
18
|
+
export interface ListArchiveRulesCommandOutput
|
|
19
|
+
extends ListArchiveRulesResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListArchiveRulesCommand extends $Command<
|
|
23
|
+
ListArchiveRulesCommandInput,
|
|
24
|
+
ListArchiveRulesCommandOutput,
|
|
25
|
+
AccessAnalyzerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListArchiveRulesCommandInput;
|
|
28
|
+
constructor(input: ListArchiveRulesCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: AccessAnalyzerClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListArchiveRulesCommandInput, ListArchiveRulesCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AccessAnalyzerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AccessAnalyzerClient";
|
|
13
|
+
import { ListFindingsRequest, ListFindingsResponse } from "../models/models_0";
|
|
14
|
+
export interface ListFindingsCommandInput extends ListFindingsRequest {}
|
|
15
|
+
export interface ListFindingsCommandOutput
|
|
16
|
+
extends ListFindingsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListFindingsCommand extends $Command<
|
|
20
|
+
ListFindingsCommandInput,
|
|
21
|
+
ListFindingsCommandOutput,
|
|
22
|
+
AccessAnalyzerClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListFindingsCommandInput;
|
|
25
|
+
constructor(input: ListFindingsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AccessAnalyzerClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListFindingsCommandInput, ListFindingsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AccessAnalyzerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AccessAnalyzerClient";
|
|
13
|
+
import {
|
|
14
|
+
ListPolicyGenerationsRequest,
|
|
15
|
+
ListPolicyGenerationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListPolicyGenerationsCommandInput
|
|
18
|
+
extends ListPolicyGenerationsRequest {}
|
|
19
|
+
export interface ListPolicyGenerationsCommandOutput
|
|
20
|
+
extends ListPolicyGenerationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListPolicyGenerationsCommand extends $Command<
|
|
24
|
+
ListPolicyGenerationsCommandInput,
|
|
25
|
+
ListPolicyGenerationsCommandOutput,
|
|
26
|
+
AccessAnalyzerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListPolicyGenerationsCommandInput;
|
|
29
|
+
constructor(input: ListPolicyGenerationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AccessAnalyzerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListPolicyGenerationsCommandInput,
|
|
37
|
+
ListPolicyGenerationsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AccessAnalyzerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AccessAnalyzerClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
|
+
ListTagsForResourceCommandInput,
|
|
25
|
+
ListTagsForResourceCommandOutput,
|
|
26
|
+
AccessAnalyzerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AccessAnalyzerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AccessAnalyzerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AccessAnalyzerClient";
|
|
13
|
+
import {
|
|
14
|
+
StartPolicyGenerationRequest,
|
|
15
|
+
StartPolicyGenerationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface StartPolicyGenerationCommandInput
|
|
18
|
+
extends StartPolicyGenerationRequest {}
|
|
19
|
+
export interface StartPolicyGenerationCommandOutput
|
|
20
|
+
extends StartPolicyGenerationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class StartPolicyGenerationCommand extends $Command<
|
|
24
|
+
StartPolicyGenerationCommandInput,
|
|
25
|
+
StartPolicyGenerationCommandOutput,
|
|
26
|
+
AccessAnalyzerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StartPolicyGenerationCommandInput;
|
|
29
|
+
constructor(input: StartPolicyGenerationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AccessAnalyzerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
StartPolicyGenerationCommandInput,
|
|
37
|
+
StartPolicyGenerationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,33 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AccessAnalyzerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AccessAnalyzerClient";
|
|
13
|
+
import { StartResourceScanRequest } from "../models/models_0";
|
|
14
|
+
export interface StartResourceScanCommandInput
|
|
15
|
+
extends StartResourceScanRequest {}
|
|
16
|
+
export interface StartResourceScanCommandOutput extends __MetadataBearer {}
|
|
17
|
+
|
|
18
|
+
export declare class StartResourceScanCommand extends $Command<
|
|
19
|
+
StartResourceScanCommandInput,
|
|
20
|
+
StartResourceScanCommandOutput,
|
|
21
|
+
AccessAnalyzerClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: StartResourceScanCommandInput;
|
|
24
|
+
constructor(input: StartResourceScanCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: AccessAnalyzerClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<StartResourceScanCommandInput, StartResourceScanCommandOutput>;
|
|
31
|
+
private serialize;
|
|
32
|
+
private deserialize;
|
|
33
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AccessAnalyzerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AccessAnalyzerClient";
|
|
13
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class TagResourceCommand extends $Command<
|
|
20
|
+
TagResourceCommandInput,
|
|
21
|
+
TagResourceCommandOutput,
|
|
22
|
+
AccessAnalyzerClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: TagResourceCommandInput;
|
|
25
|
+
constructor(input: TagResourceCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AccessAnalyzerClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AccessAnalyzerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AccessAnalyzerClient";
|
|
13
|
+
import {
|
|
14
|
+
UntagResourceRequest,
|
|
15
|
+
UntagResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class UntagResourceCommand extends $Command<
|
|
23
|
+
UntagResourceCommandInput,
|
|
24
|
+
UntagResourceCommandOutput,
|
|
25
|
+
AccessAnalyzerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UntagResourceCommandInput;
|
|
28
|
+
constructor(input: UntagResourceCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: AccessAnalyzerClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,33 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AccessAnalyzerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AccessAnalyzerClient";
|
|
13
|
+
import { UpdateArchiveRuleRequest } from "../models/models_0";
|
|
14
|
+
export interface UpdateArchiveRuleCommandInput
|
|
15
|
+
extends UpdateArchiveRuleRequest {}
|
|
16
|
+
export interface UpdateArchiveRuleCommandOutput extends __MetadataBearer {}
|
|
17
|
+
|
|
18
|
+
export declare class UpdateArchiveRuleCommand extends $Command<
|
|
19
|
+
UpdateArchiveRuleCommandInput,
|
|
20
|
+
UpdateArchiveRuleCommandOutput,
|
|
21
|
+
AccessAnalyzerClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: UpdateArchiveRuleCommandInput;
|
|
24
|
+
constructor(input: UpdateArchiveRuleCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: AccessAnalyzerClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<UpdateArchiveRuleCommandInput, UpdateArchiveRuleCommandOutput>;
|
|
31
|
+
private serialize;
|
|
32
|
+
private deserialize;
|
|
33
|
+
}
|