@aws-sdk/client-accessanalyzer 3.952.0 → 3.954.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.
Files changed (57) hide show
  1. package/dist-cjs/index.js +645 -434
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/ApplyArchiveRuleCommand.js +2 -2
  4. package/dist-es/commands/CancelPolicyGenerationCommand.js +2 -2
  5. package/dist-es/commands/CheckAccessNotGrantedCommand.js +2 -2
  6. package/dist-es/commands/CheckNoNewAccessCommand.js +2 -2
  7. package/dist-es/commands/CheckNoPublicAccessCommand.js +2 -2
  8. package/dist-es/commands/CreateAccessPreviewCommand.js +2 -2
  9. package/dist-es/commands/CreateAnalyzerCommand.js +2 -2
  10. package/dist-es/commands/CreateArchiveRuleCommand.js +2 -2
  11. package/dist-es/commands/DeleteAnalyzerCommand.js +2 -2
  12. package/dist-es/commands/DeleteArchiveRuleCommand.js +2 -2
  13. package/dist-es/commands/GenerateFindingRecommendationCommand.js +2 -2
  14. package/dist-es/commands/GetAccessPreviewCommand.js +2 -2
  15. package/dist-es/commands/GetAnalyzedResourceCommand.js +2 -2
  16. package/dist-es/commands/GetAnalyzerCommand.js +2 -2
  17. package/dist-es/commands/GetArchiveRuleCommand.js +2 -2
  18. package/dist-es/commands/GetFindingCommand.js +2 -2
  19. package/dist-es/commands/GetFindingRecommendationCommand.js +2 -2
  20. package/dist-es/commands/GetFindingV2Command.js +2 -2
  21. package/dist-es/commands/GetFindingsStatisticsCommand.js +2 -2
  22. package/dist-es/commands/GetGeneratedPolicyCommand.js +2 -2
  23. package/dist-es/commands/ListAccessPreviewFindingsCommand.js +2 -2
  24. package/dist-es/commands/ListAccessPreviewsCommand.js +2 -2
  25. package/dist-es/commands/ListAnalyzedResourcesCommand.js +2 -2
  26. package/dist-es/commands/ListAnalyzersCommand.js +2 -2
  27. package/dist-es/commands/ListArchiveRulesCommand.js +2 -2
  28. package/dist-es/commands/ListFindingsCommand.js +2 -2
  29. package/dist-es/commands/ListFindingsV2Command.js +2 -2
  30. package/dist-es/commands/ListPolicyGenerationsCommand.js +2 -2
  31. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  32. package/dist-es/commands/StartPolicyGenerationCommand.js +2 -2
  33. package/dist-es/commands/StartResourceScanCommand.js +2 -2
  34. package/dist-es/commands/TagResourceCommand.js +2 -2
  35. package/dist-es/commands/UntagResourceCommand.js +2 -2
  36. package/dist-es/commands/UpdateAnalyzerCommand.js +2 -2
  37. package/dist-es/commands/UpdateArchiveRuleCommand.js +2 -2
  38. package/dist-es/commands/UpdateFindingsCommand.js +2 -2
  39. package/dist-es/commands/ValidatePolicyCommand.js +2 -2
  40. package/dist-es/index.js +1 -0
  41. package/dist-es/runtimeConfig.shared.js +6 -1
  42. package/dist-es/schemas/schemas_0.js +406 -398
  43. package/dist-types/AccessAnalyzerClient.d.ts +1 -10
  44. package/dist-types/index.d.ts +1 -0
  45. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  46. package/dist-types/runtimeConfig.d.ts +6 -2
  47. package/dist-types/runtimeConfig.native.d.ts +6 -2
  48. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  49. package/dist-types/schemas/schemas_0.d.ts +204 -266
  50. package/dist-types/ts3.4/AccessAnalyzerClient.d.ts +0 -4
  51. package/dist-types/ts3.4/index.d.ts +1 -0
  52. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  53. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  54. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  55. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  56. package/dist-types/ts3.4/schemas/schemas_0.d.ts +203 -268
  57. package/package.json +34 -34
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.accessanalyzer" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.accessanalyzer",
32
+ version: "2019-11-01",
33
+ serviceTarget: "AccessAnalyzer",
34
+ },
30
35
  serviceId: config?.serviceId ?? "AccessAnalyzer",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -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 { ApplyArchiveRule } from "../schemas/schemas_0";
4
+ import { ApplyArchiveRule$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ApplyArchiveRuleCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ApplyArchiveRuleCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "ApplyArchiveRule", {})
13
13
  .n("AccessAnalyzerClient", "ApplyArchiveRuleCommand")
14
- .sc(ApplyArchiveRule)
14
+ .sc(ApplyArchiveRule$)
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 { CancelPolicyGeneration } from "../schemas/schemas_0";
4
+ import { CancelPolicyGeneration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CancelPolicyGenerationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CancelPolicyGenerationCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "CancelPolicyGeneration", {})
13
13
  .n("AccessAnalyzerClient", "CancelPolicyGenerationCommand")
14
- .sc(CancelPolicyGeneration)
14
+ .sc(CancelPolicyGeneration$)
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 { CheckAccessNotGranted } from "../schemas/schemas_0";
4
+ import { CheckAccessNotGranted$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CheckAccessNotGrantedCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CheckAccessNotGrantedCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "CheckAccessNotGranted", {})
13
13
  .n("AccessAnalyzerClient", "CheckAccessNotGrantedCommand")
14
- .sc(CheckAccessNotGranted)
14
+ .sc(CheckAccessNotGranted$)
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 { CheckNoNewAccess } from "../schemas/schemas_0";
4
+ import { CheckNoNewAccess$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CheckNoNewAccessCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CheckNoNewAccessCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "CheckNoNewAccess", {})
13
13
  .n("AccessAnalyzerClient", "CheckNoNewAccessCommand")
14
- .sc(CheckNoNewAccess)
14
+ .sc(CheckNoNewAccess$)
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 { CheckNoPublicAccess } from "../schemas/schemas_0";
4
+ import { CheckNoPublicAccess$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CheckNoPublicAccessCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CheckNoPublicAccessCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "CheckNoPublicAccess", {})
13
13
  .n("AccessAnalyzerClient", "CheckNoPublicAccessCommand")
14
- .sc(CheckNoPublicAccess)
14
+ .sc(CheckNoPublicAccess$)
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 { CreateAccessPreview } from "../schemas/schemas_0";
4
+ import { CreateAccessPreview$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateAccessPreviewCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateAccessPreviewCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "CreateAccessPreview", {})
13
13
  .n("AccessAnalyzerClient", "CreateAccessPreviewCommand")
14
- .sc(CreateAccessPreview)
14
+ .sc(CreateAccessPreview$)
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 { CreateAnalyzer } from "../schemas/schemas_0";
4
+ import { CreateAnalyzer$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateAnalyzerCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateAnalyzerCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "CreateAnalyzer", {})
13
13
  .n("AccessAnalyzerClient", "CreateAnalyzerCommand")
14
- .sc(CreateAnalyzer)
14
+ .sc(CreateAnalyzer$)
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 { CreateArchiveRule } from "../schemas/schemas_0";
4
+ import { CreateArchiveRule$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateArchiveRuleCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateArchiveRuleCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "CreateArchiveRule", {})
13
13
  .n("AccessAnalyzerClient", "CreateArchiveRuleCommand")
14
- .sc(CreateArchiveRule)
14
+ .sc(CreateArchiveRule$)
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 { DeleteAnalyzer } from "../schemas/schemas_0";
4
+ import { DeleteAnalyzer$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteAnalyzerCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteAnalyzerCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "DeleteAnalyzer", {})
13
13
  .n("AccessAnalyzerClient", "DeleteAnalyzerCommand")
14
- .sc(DeleteAnalyzer)
14
+ .sc(DeleteAnalyzer$)
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 { DeleteArchiveRule } from "../schemas/schemas_0";
4
+ import { DeleteArchiveRule$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteArchiveRuleCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteArchiveRuleCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "DeleteArchiveRule", {})
13
13
  .n("AccessAnalyzerClient", "DeleteArchiveRuleCommand")
14
- .sc(DeleteArchiveRule)
14
+ .sc(DeleteArchiveRule$)
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 { GenerateFindingRecommendation } from "../schemas/schemas_0";
4
+ import { GenerateFindingRecommendation$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GenerateFindingRecommendationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GenerateFindingRecommendationCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "GenerateFindingRecommendation", {})
13
13
  .n("AccessAnalyzerClient", "GenerateFindingRecommendationCommand")
14
- .sc(GenerateFindingRecommendation)
14
+ .sc(GenerateFindingRecommendation$)
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 { GetAccessPreview } from "../schemas/schemas_0";
4
+ import { GetAccessPreview$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetAccessPreviewCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetAccessPreviewCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "GetAccessPreview", {})
13
13
  .n("AccessAnalyzerClient", "GetAccessPreviewCommand")
14
- .sc(GetAccessPreview)
14
+ .sc(GetAccessPreview$)
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 { GetAnalyzedResource } from "../schemas/schemas_0";
4
+ import { GetAnalyzedResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetAnalyzedResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetAnalyzedResourceCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "GetAnalyzedResource", {})
13
13
  .n("AccessAnalyzerClient", "GetAnalyzedResourceCommand")
14
- .sc(GetAnalyzedResource)
14
+ .sc(GetAnalyzedResource$)
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 { GetAnalyzer } from "../schemas/schemas_0";
4
+ import { GetAnalyzer$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetAnalyzerCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetAnalyzerCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "GetAnalyzer", {})
13
13
  .n("AccessAnalyzerClient", "GetAnalyzerCommand")
14
- .sc(GetAnalyzer)
14
+ .sc(GetAnalyzer$)
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 { GetArchiveRule } from "../schemas/schemas_0";
4
+ import { GetArchiveRule$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetArchiveRuleCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetArchiveRuleCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "GetArchiveRule", {})
13
13
  .n("AccessAnalyzerClient", "GetArchiveRuleCommand")
14
- .sc(GetArchiveRule)
14
+ .sc(GetArchiveRule$)
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 { GetFinding } from "../schemas/schemas_0";
4
+ import { GetFinding$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetFindingCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetFindingCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "GetFinding", {})
13
13
  .n("AccessAnalyzerClient", "GetFindingCommand")
14
- .sc(GetFinding)
14
+ .sc(GetFinding$)
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 { GetFindingRecommendation } from "../schemas/schemas_0";
4
+ import { GetFindingRecommendation$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetFindingRecommendationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetFindingRecommendationCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "GetFindingRecommendation", {})
13
13
  .n("AccessAnalyzerClient", "GetFindingRecommendationCommand")
14
- .sc(GetFindingRecommendation)
14
+ .sc(GetFindingRecommendation$)
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 { GetFindingV2 } from "../schemas/schemas_0";
4
+ import { GetFindingV2$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetFindingV2Command extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetFindingV2Command extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "GetFindingV2", {})
13
13
  .n("AccessAnalyzerClient", "GetFindingV2Command")
14
- .sc(GetFindingV2)
14
+ .sc(GetFindingV2$)
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 { GetFindingsStatistics } from "../schemas/schemas_0";
4
+ import { GetFindingsStatistics$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetFindingsStatisticsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetFindingsStatisticsCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "GetFindingsStatistics", {})
13
13
  .n("AccessAnalyzerClient", "GetFindingsStatisticsCommand")
14
- .sc(GetFindingsStatistics)
14
+ .sc(GetFindingsStatistics$)
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 { GetGeneratedPolicy } from "../schemas/schemas_0";
4
+ import { GetGeneratedPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetGeneratedPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetGeneratedPolicyCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "GetGeneratedPolicy", {})
13
13
  .n("AccessAnalyzerClient", "GetGeneratedPolicyCommand")
14
- .sc(GetGeneratedPolicy)
14
+ .sc(GetGeneratedPolicy$)
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 { ListAccessPreviewFindings } from "../schemas/schemas_0";
4
+ import { ListAccessPreviewFindings$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListAccessPreviewFindingsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListAccessPreviewFindingsCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "ListAccessPreviewFindings", {})
13
13
  .n("AccessAnalyzerClient", "ListAccessPreviewFindingsCommand")
14
- .sc(ListAccessPreviewFindings)
14
+ .sc(ListAccessPreviewFindings$)
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 { ListAccessPreviews } from "../schemas/schemas_0";
4
+ import { ListAccessPreviews$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListAccessPreviewsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListAccessPreviewsCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "ListAccessPreviews", {})
13
13
  .n("AccessAnalyzerClient", "ListAccessPreviewsCommand")
14
- .sc(ListAccessPreviews)
14
+ .sc(ListAccessPreviews$)
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 { ListAnalyzedResources } from "../schemas/schemas_0";
4
+ import { ListAnalyzedResources$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListAnalyzedResourcesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListAnalyzedResourcesCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "ListAnalyzedResources", {})
13
13
  .n("AccessAnalyzerClient", "ListAnalyzedResourcesCommand")
14
- .sc(ListAnalyzedResources)
14
+ .sc(ListAnalyzedResources$)
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 { ListAnalyzers } from "../schemas/schemas_0";
4
+ import { ListAnalyzers$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListAnalyzersCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListAnalyzersCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "ListAnalyzers", {})
13
13
  .n("AccessAnalyzerClient", "ListAnalyzersCommand")
14
- .sc(ListAnalyzers)
14
+ .sc(ListAnalyzers$)
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 { ListArchiveRules } from "../schemas/schemas_0";
4
+ import { ListArchiveRules$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListArchiveRulesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListArchiveRulesCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "ListArchiveRules", {})
13
13
  .n("AccessAnalyzerClient", "ListArchiveRulesCommand")
14
- .sc(ListArchiveRules)
14
+ .sc(ListArchiveRules$)
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 { ListFindings } from "../schemas/schemas_0";
4
+ import { ListFindings$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListFindingsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListFindingsCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "ListFindings", {})
13
13
  .n("AccessAnalyzerClient", "ListFindingsCommand")
14
- .sc(ListFindings)
14
+ .sc(ListFindings$)
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 { ListFindingsV2 } from "../schemas/schemas_0";
4
+ import { ListFindingsV2$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListFindingsV2Command extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListFindingsV2Command extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "ListFindingsV2", {})
13
13
  .n("AccessAnalyzerClient", "ListFindingsV2Command")
14
- .sc(ListFindingsV2)
14
+ .sc(ListFindingsV2$)
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 { ListPolicyGenerations } from "../schemas/schemas_0";
4
+ import { ListPolicyGenerations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListPolicyGenerationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListPolicyGenerationsCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "ListPolicyGenerations", {})
13
13
  .n("AccessAnalyzerClient", "ListPolicyGenerationsCommand")
14
- .sc(ListPolicyGenerations)
14
+ .sc(ListPolicyGenerations$)
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 { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "ListTagsForResource", {})
13
13
  .n("AccessAnalyzerClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
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 { StartPolicyGeneration } from "../schemas/schemas_0";
4
+ import { StartPolicyGeneration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartPolicyGenerationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartPolicyGenerationCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "StartPolicyGeneration", {})
13
13
  .n("AccessAnalyzerClient", "StartPolicyGenerationCommand")
14
- .sc(StartPolicyGeneration)
14
+ .sc(StartPolicyGeneration$)
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 { StartResourceScan } from "../schemas/schemas_0";
4
+ import { StartResourceScan$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartResourceScanCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartResourceScanCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "StartResourceScan", {})
13
13
  .n("AccessAnalyzerClient", "StartResourceScanCommand")
14
- .sc(StartResourceScan)
14
+ .sc(StartResourceScan$)
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 { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "TagResource", {})
13
13
  .n("AccessAnalyzerClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
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 { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "UntagResource", {})
13
13
  .n("AccessAnalyzerClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
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 { UpdateAnalyzer } from "../schemas/schemas_0";
4
+ import { UpdateAnalyzer$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateAnalyzerCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateAnalyzerCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "UpdateAnalyzer", {})
13
13
  .n("AccessAnalyzerClient", "UpdateAnalyzerCommand")
14
- .sc(UpdateAnalyzer)
14
+ .sc(UpdateAnalyzer$)
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 { UpdateArchiveRule } from "../schemas/schemas_0";
4
+ import { UpdateArchiveRule$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateArchiveRuleCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateArchiveRuleCommand extends $Command
11
11
  })
12
12
  .s("AccessAnalyzer", "UpdateArchiveRule", {})
13
13
  .n("AccessAnalyzerClient", "UpdateArchiveRuleCommand")
14
- .sc(UpdateArchiveRule)
14
+ .sc(UpdateArchiveRule$)
15
15
  .build() {
16
16
  }