@aws-sdk/client-accessanalyzer 3.296.0 → 3.297.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 (42) hide show
  1. package/dist-types/AccessAnalyzer.d.ts +29 -0
  2. package/dist-types/AccessAnalyzerClient.d.ts +24 -4
  3. package/dist-types/commands/ApplyArchiveRuleCommand.d.ts +16 -0
  4. package/dist-types/commands/CancelPolicyGenerationCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateAccessPreviewCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateAnalyzerCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateArchiveRuleCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteAnalyzerCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteArchiveRuleCommand.d.ts +16 -0
  10. package/dist-types/commands/GetAccessPreviewCommand.d.ts +16 -0
  11. package/dist-types/commands/GetAnalyzedResourceCommand.d.ts +16 -0
  12. package/dist-types/commands/GetAnalyzerCommand.d.ts +16 -0
  13. package/dist-types/commands/GetArchiveRuleCommand.d.ts +16 -0
  14. package/dist-types/commands/GetFindingCommand.d.ts +16 -0
  15. package/dist-types/commands/GetGeneratedPolicyCommand.d.ts +16 -0
  16. package/dist-types/commands/ListAccessPreviewFindingsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListAccessPreviewsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListAnalyzedResourcesCommand.d.ts +16 -0
  19. package/dist-types/commands/ListAnalyzersCommand.d.ts +16 -0
  20. package/dist-types/commands/ListArchiveRulesCommand.d.ts +16 -0
  21. package/dist-types/commands/ListFindingsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  24. package/dist-types/commands/StartPolicyGenerationCommand.d.ts +16 -0
  25. package/dist-types/commands/StartResourceScanCommand.d.ts +16 -0
  26. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  27. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateArchiveRuleCommand.d.ts +16 -0
  29. package/dist-types/commands/UpdateFindingsCommand.d.ts +16 -0
  30. package/dist-types/commands/ValidatePolicyCommand.d.ts +16 -0
  31. package/dist-types/models/AccessAnalyzerServiceException.d.ts +2 -0
  32. package/dist-types/models/models_0.d.ts +228 -1
  33. package/dist-types/pagination/Interfaces.d.ts +3 -0
  34. package/dist-types/pagination/ListAccessPreviewFindingsPaginator.d.ts +3 -0
  35. package/dist-types/pagination/ListAccessPreviewsPaginator.d.ts +3 -0
  36. package/dist-types/pagination/ListAnalyzedResourcesPaginator.d.ts +3 -0
  37. package/dist-types/pagination/ListAnalyzersPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListArchiveRulesPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListFindingsPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListPolicyGenerationsPaginator.d.ts +3 -0
  41. package/dist-types/pagination/ValidatePolicyPaginator.d.ts +3 -0
  42. package/package.json +3 -3
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { AccessAnalyzerClient } from "../AccessAnalyzerClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface AccessAnalyzerPaginationConfiguration extends PaginationConfiguration {
4
7
  client: AccessAnalyzerClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListAccessPreviewFindingsCommandInput, ListAccessPreviewFindingsCommandOutput } from "../commands/ListAccessPreviewFindingsCommand";
3
3
  import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListAccessPreviewFindings(config: AccessAnalyzerPaginationConfiguration, input: ListAccessPreviewFindingsCommandInput, ...additionalArguments: any): Paginator<ListAccessPreviewFindingsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListAccessPreviewsCommandInput, ListAccessPreviewsCommandOutput } from "../commands/ListAccessPreviewsCommand";
3
3
  import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListAccessPreviews(config: AccessAnalyzerPaginationConfiguration, input: ListAccessPreviewsCommandInput, ...additionalArguments: any): Paginator<ListAccessPreviewsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListAnalyzedResourcesCommandInput, ListAnalyzedResourcesCommandOutput } from "../commands/ListAnalyzedResourcesCommand";
3
3
  import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListAnalyzedResources(config: AccessAnalyzerPaginationConfiguration, input: ListAnalyzedResourcesCommandInput, ...additionalArguments: any): Paginator<ListAnalyzedResourcesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListAnalyzersCommandInput, ListAnalyzersCommandOutput } from "../commands/ListAnalyzersCommand";
3
3
  import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListAnalyzers(config: AccessAnalyzerPaginationConfiguration, input: ListAnalyzersCommandInput, ...additionalArguments: any): Paginator<ListAnalyzersCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListArchiveRulesCommandInput, ListArchiveRulesCommandOutput } from "../commands/ListArchiveRulesCommand";
3
3
  import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListArchiveRules(config: AccessAnalyzerPaginationConfiguration, input: ListArchiveRulesCommandInput, ...additionalArguments: any): Paginator<ListArchiveRulesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListFindingsCommandInput, ListFindingsCommandOutput } from "../commands/ListFindingsCommand";
3
3
  import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListFindings(config: AccessAnalyzerPaginationConfiguration, input: ListFindingsCommandInput, ...additionalArguments: any): Paginator<ListFindingsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListPolicyGenerationsCommandInput, ListPolicyGenerationsCommandOutput } from "../commands/ListPolicyGenerationsCommand";
3
3
  import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListPolicyGenerations(config: AccessAnalyzerPaginationConfiguration, input: ListPolicyGenerationsCommandInput, ...additionalArguments: any): Paginator<ListPolicyGenerationsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ValidatePolicyCommandInput, ValidatePolicyCommandOutput } from "../commands/ValidatePolicyCommand";
3
3
  import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateValidatePolicy(config: AccessAnalyzerPaginationConfiguration, input: ValidatePolicyCommandInput, ...additionalArguments: any): Paginator<ValidatePolicyCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-accessanalyzer",
3
3
  "description": "AWS SDK for JavaScript Accessanalyzer Client for Node.js, Browser and React Native",
4
- "version": "3.296.0",
4
+ "version": "3.297.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
27
  "@aws-sdk/hash-node": "3.296.0",
28
28
  "@aws-sdk/invalid-dependency": "3.296.0",