@aws-sdk/client-accessanalyzer 3.952.0 → 3.953.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 +645 -434
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/ApplyArchiveRuleCommand.js +2 -2
- package/dist-es/commands/CancelPolicyGenerationCommand.js +2 -2
- package/dist-es/commands/CheckAccessNotGrantedCommand.js +2 -2
- package/dist-es/commands/CheckNoNewAccessCommand.js +2 -2
- package/dist-es/commands/CheckNoPublicAccessCommand.js +2 -2
- package/dist-es/commands/CreateAccessPreviewCommand.js +2 -2
- package/dist-es/commands/CreateAnalyzerCommand.js +2 -2
- package/dist-es/commands/CreateArchiveRuleCommand.js +2 -2
- package/dist-es/commands/DeleteAnalyzerCommand.js +2 -2
- package/dist-es/commands/DeleteArchiveRuleCommand.js +2 -2
- package/dist-es/commands/GenerateFindingRecommendationCommand.js +2 -2
- package/dist-es/commands/GetAccessPreviewCommand.js +2 -2
- package/dist-es/commands/GetAnalyzedResourceCommand.js +2 -2
- package/dist-es/commands/GetAnalyzerCommand.js +2 -2
- package/dist-es/commands/GetArchiveRuleCommand.js +2 -2
- package/dist-es/commands/GetFindingCommand.js +2 -2
- package/dist-es/commands/GetFindingRecommendationCommand.js +2 -2
- package/dist-es/commands/GetFindingV2Command.js +2 -2
- package/dist-es/commands/GetFindingsStatisticsCommand.js +2 -2
- package/dist-es/commands/GetGeneratedPolicyCommand.js +2 -2
- package/dist-es/commands/ListAccessPreviewFindingsCommand.js +2 -2
- package/dist-es/commands/ListAccessPreviewsCommand.js +2 -2
- package/dist-es/commands/ListAnalyzedResourcesCommand.js +2 -2
- package/dist-es/commands/ListAnalyzersCommand.js +2 -2
- package/dist-es/commands/ListArchiveRulesCommand.js +2 -2
- package/dist-es/commands/ListFindingsCommand.js +2 -2
- package/dist-es/commands/ListFindingsV2Command.js +2 -2
- package/dist-es/commands/ListPolicyGenerationsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/StartPolicyGenerationCommand.js +2 -2
- package/dist-es/commands/StartResourceScanCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAnalyzerCommand.js +2 -2
- package/dist-es/commands/UpdateArchiveRuleCommand.js +2 -2
- package/dist-es/commands/UpdateFindingsCommand.js +2 -2
- package/dist-es/commands/ValidatePolicyCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +406 -398
- package/dist-types/AccessAnalyzerClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +204 -266
- package/dist-types/ts3.4/AccessAnalyzerClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +203 -268
- package/package.json +34 -34
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateFindings } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateFindings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateFindingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateFindingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AccessAnalyzer", "UpdateFindings", {})
|
|
13
13
|
.n("AccessAnalyzerClient", "UpdateFindingsCommand")
|
|
14
|
-
.sc(UpdateFindings)
|
|
14
|
+
.sc(UpdateFindings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ValidatePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { ValidatePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ValidatePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ValidatePolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AccessAnalyzer", "ValidatePolicy", {})
|
|
13
13
|
.n("AccessAnalyzerClient", "ValidatePolicyCommand")
|
|
14
|
-
.sc(ValidatePolicy)
|
|
14
|
+
.sc(ValidatePolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.accessanalyzer",
|
|
29
|
+
version: "2019-11-01",
|
|
30
|
+
serviceTarget: "AccessAnalyzer",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "AccessAnalyzer",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|